summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/admin/volumes/templates/volumes/index.html
blob: 531571dec14c6e0175d9c00fed626360e38d244e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% extends 'base.html' %}
{% load i18n %}
{% block title %}{% trans "Volumes" %}{% endblock %}

{% block page_header %}
  {% include "horizon/common/_page_header.html" with title=_("Volumes") %}
{% endblock page_header %}

{% block main %}
  <div id="volumes">
      {{ volumes_table.render }}
  </div>

  <div id="volume-types">
      {{ volume_types_table.render }}
  </div>
{% endblock %}