~ubuntu-branches/ubuntu/utopic/horizon/utopic

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/admin/volumes/templates/volumes/snapshots/_detail_overview.html

  • Committer: Package Import Robot
  • Author(s): James Page, Chris Johnston, James Page
  • Date: 2014-09-25 15:36:23 UTC
  • mfrom: (0.2.1) (1.2.1) (70.1.1 utopic-proposed)
  • Revision ID: package-import@ubuntu.com-20140925153623-ifkcmkx2lg3fzuwp
Tags: 1:2014.2~b3-0ubuntu1
[ Chris Johnston ]
* d/p/fix-ubuntu-theme.patch: Fix Ubuntu theme dropdown and confirmation
  button (LP: #1308651).

[ James Page ]
* New upstream milestone release.
* Embed xstatic assets dependencies in secondary orig-xstatic.tar.gz:
  - d/rules,bundle-xstatic.sh: Add helper to bundle required xstatic pkgs.
  - d/p/embedded-xstatic.patch: Use embedded versions.
  - d/rules: Install xstatic pkgs into python-django-horizon.
  - d/README.source: Details of all of the above and how to use it.
* Switch to using pyscss for CSS and JS optimization:
  - d/control: Add Depends on python-django-pyscss.
  - d/openstack-dashboard.install,d/static/*: Drop pre-optimized assets
    from debian directory.
* d/p/ubuntu_settings.patch: Restored missing Ubuntu theme settings.
* d/control: Drop Suggests on python-lesscpy, no longer supported.
* d/control: Bumped Standards-Version: 3.9.5, no changes.
* d/control: Tidy versioned requirements.
* d/control: Drop BD for test requirements as tests are not run during
  build.
* d/openstack-dashboard.conf: Sort out permissions.
* d/control: Drop python-django-openstack transitional package,
  no longer required.
* d/theme/templates/_stylesheets.html: Refresh against upstream
  codebase.
* d/control: Add missing dependency on python-saharaclient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% load i18n sizeformat parse_date %}
 
2
{% load url from future %}
 
3
 
 
4
<h3>{% trans "Volume Snapshot Overview" %}</h3>
 
5
 
 
6
<div class="info row detail">
 
7
  <h4>{% trans "Info" %}</h4>
 
8
  <hr class="header_rule">
 
9
  <dl>
 
10
    <dt>{% trans "Name" %}</dt>
 
11
    <dd>{{ snapshot.name }}</dd>
 
12
    <dt>{% trans "ID" %}</dt>
 
13
    <dd>{{ snapshot.id }}</dd>
 
14
    {% if snapshot.description %}
 
15
    <dt>{% trans "Description" %}</dt>
 
16
    <dd>{{ snapshot.description }}</dd>
 
17
    {% endif %}
 
18
    <dt>{% trans "Status" %}</dt>
 
19
    <dd>{{ snapshot.status|capfirst }}</dd>
 
20
    <dt>{% trans "Volume" %}</dt>
 
21
    <dd>
 
22
      <a href="{% url 'horizon:admin:volumes:volumes:detail' snapshot.volume_id %}">
 
23
        {{ volume.name }}
 
24
      </a>
 
25
    </dd>
 
26
  </dl>
 
27
</div>
 
28
 
 
29
<div class="specs row detail">
 
30
  <h4>{% trans "Specs" %}</h4>
 
31
  <hr class="header_rule">
 
32
  <dl>
 
33
    <dt>{% trans "Size" %}</dt>
 
34
    <dd>{{ snapshot.size }} {% trans "GB" %}</dd>
 
35
    <dt>{% trans "Created" %}</dt>
 
36
    <dd>{{ snapshot.created_at|parse_date }}</dd>
 
37
  </dl>
 
38
</div>