summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/admin/quotas/templates/quotas/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/dashboards/admin/quotas/templates/quotas/index.html')
-rw-r--r--openstack_dashboard/dashboards/admin/quotas/templates/quotas/index.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/openstack_dashboard/dashboards/admin/quotas/templates/quotas/index.html b/openstack_dashboard/dashboards/admin/quotas/templates/quotas/index.html
new file mode 100644
index 000000000..0650cf021
--- /dev/null
+++ b/openstack_dashboard/dashboards/admin/quotas/templates/quotas/index.html
@@ -0,0 +1,13 @@
+{% extends 'base.html' %}
+{% load i18n %}
+{% block title %}Quotas{% endblock %}
+
+{% block page_header %}
+ {% url horizon:admin:quotas:index as refresh_link %}
+ {# to make searchable false, just remove it from the include statement #}
+ {% include "horizon/common/_page_header.html" with title=_("Default Quotas") refresh_link=refresh_link searchable="true" %}
+{% endblock page_header %}
+
+{% block main %}
+ {{ table.render }}
+{% endblock %}