summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/images/update.html
blob: d20491aaa5675efa55c5dfbafd6697c6d73136c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 %}