~ubuntu-branches/ubuntu/vivid/horizon/vivid-proposed

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/access_and_security/templates/access_and_security/keypairs/detail.html

  • Committer: Package Import Robot
  • Author(s): Corey Bryant, Corey Bryant, James Page
  • Date: 2015-02-16 13:50:29 UTC
  • mfrom: (0.10.1) (1.2.6)
  • Revision ID: package-import@ubuntu.com-20150216135029-m632ppq5etw9te0c
Tags: 1:2015.1~b2-0ubuntu1
[ Corey Bryant ]
* New upstream release.
  - d/control: Align with upstream dependencies.
  - d/p/embedded-xstatic.patch: Refreshed. Code moved to new files.
  - d/p/fix-requirements.patch: Added to drop selenium dependency.

[ James Page ]
* d/bundle-xstatic.sh: Use --system flag when generating xstatic
  assets.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends 'base.html' %}
 
2
{% load i18n sizeformat %}
 
3
 
 
4
{% block title %}{% trans "Key Pair Details" %}{% endblock %}
 
5
{% block page_header %}
 
6
  {% include "horizon/common/_page_header.html" with title=page_title %}
 
7
{% endblock page_header %}
 
8
 
 
9
{% block main %}
 
10
<div class="row-fluid">
 
11
  <div class="info detail col-sm-12">
 
12
    <h4>{% trans "Information" %}</h4>
 
13
    <hr class="header_rule">
 
14
    <dl class="dl-horizontal">
 
15
      <dt>{% trans "Name" %}</dt>
 
16
      <dd>{{ keypair.name|default:_("None") }}</dd>
 
17
      <dt>{% trans "ID" %}</dt>
 
18
      <dd>{{ keypair.id|default:_("None") }}</dd>
 
19
      <dt>{% trans "Fingerprint" %}</dt>
 
20
      <dd>{{ keypair.fingerprint|default:_("None") }}</dd>
 
21
      <dt>{% trans "Created" %}</dt>
 
22
      <dd>{{ keypair.created_at|parse_isotime}}</dd>
 
23
      {% if keypair.updated_at %}
 
24
        <dt>{% trans "Updated" %}
 
25
        <dd>{{ keypair.updated_at|parse_isotime}}</dd>
 
26
      {% endif %}
 
27
      <dt>{% trans "User ID" %}</dt>
 
28
      <dd>{{ keypair.user_id|default:_("None") }}</dd>
 
29
      <dt>{% trans "Public Key" %}</dt>
 
30
      <dd><textarea class="key_text">{{ keypair.public_key|default:_("None") }}</textarea></dd>
 
31
    </dl>
 
32
  </div>
 
33
</div>
 
34
{% endblock %}