summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/update.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/update.html')
-rw-r--r--horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/update.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/update.html b/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/update.html
new file mode 100644
index 00000000..6602bac0
--- /dev/null
+++ b/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/update.html
@@ -0,0 +1,29 @@
+{% extends 'syspanel/base.html' %}
+{%load i18n%}
+
+{% block sidebar %}
+ {% with current_sidebar="tenants" %}
+ {{block.super}}
+ {% endwith %}
+{% endblock %}
+
+{% block page_header %}
+ {% include "horizon/common/_page_header.html" with title=_("Update Tenant") %}
+{% endblock page_header %}
+
+{% block syspanel_main %}
+ <div class="dash_block">
+ <div class="left">
+ {% include 'syspanel/tenants/_update_form.html' %}
+ </div>
+
+ <div class="right">
+ <h3>{% trans "Description"%}:</h3>
+ <p>{% trans "From here you can edit a tenant."%}</p>
+ </div>
+ <div class="clear">&nbsp;</div>
+ </div>
+{% endblock %}
+
+
+