horizon/horizon/dashboards/nova/templates/nova/instances_and_volumes/index.html

18 lines
414 B
HTML

{% extends 'nova/base.html' %}
{% load i18n %}
{% block title %}Instances & Volumes{% endblock %}
{% block page_header %}
{% include "horizon/common/_page_header.html" with title=_("Instances & Volumes") %}
{% endblock page_header %}
{% block dash_main %}
<div id="instances">
{{ instances_table.render }}
</div>
<div id="volumes">
{{ volumes_table.render }}
</div>
{% endblock %}