summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/images/update.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/horizon/dashboards/nova/templates/nova/images/update.html')
-rw-r--r--horizon/horizon/dashboards/nova/templates/nova/images/update.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/horizon/horizon/dashboards/nova/templates/nova/images/update.html b/horizon/horizon/dashboards/nova/templates/nova/images/update.html
new file mode 100644
index 00000000..d20491aa
--- /dev/null
+++ b/horizon/horizon/dashboards/nova/templates/nova/images/update.html
@@ -0,0 +1,26 @@
+{% extends 'nova/base.html' %}
+{%load i18n%}
+
+{% block sidebar %}
+ {% with current_sidebar="images" %}
+ {{block.super}}
+ {% endwith %}
+{% endblock %}
+
+{% block page_header %}
+ {% include "horizon/common/_page_header.html" with title=_("Update Image") %}
+{% endblock page_header %}
+
+{% block dash_main %}
+ <div class="dash_block">
+ <div class="left">
+ {% include 'nova/images/_form.html' %}
+ </div>
+
+ <div class="right">
+ <h3>{% trans "Description:"%}</h3>
+ <p>{% trans "From here you can modify different properties of an image."%}</p>
+ </div>
+ <div class="clear">&nbsp;</div>
+ </div>
+{% endblock %}