~ubuntu-branches/ubuntu/saucy/horizon/saucy-security

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/loadbalancers/templates/loadbalancers/_pool_details.html

  • Committer: Package Import Robot
  • Author(s): Adam Gandelman
  • Date: 2013-09-06 11:59:43 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20130906115943-h3td0l7tp16mb9oc
Tags: 1:2013.2~b3-0ubuntu1
* New upstream release.
* debian/control: Minimum python-openstack-auth version >= 1.1.1.
* debian/control: Add python-troveclient.
* debian/static: Refresh static assets for 2013.2~b3.
* debian/patches: ubuntu_local_settings.patch -> ubuntu_settings.patch, also
  patch location of secret key in openstack_dashboard/settings.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
<div class="info row-fluid detail">
4
4
  <hr class="header_rule">
5
5
  <dl>
6
 
    <dt>{% trans "ID: " %}</dt>
 
6
    <dt>{% trans "ID:" %}</dt>
7
7
    <dd>{{ pool.id }}</dd>
8
8
 
9
 
    <dt>{% trans "Tenant ID: " %}</dt>
 
9
    <dt>{% trans "Tenant ID:" %}</dt>
10
10
    <dd>{{ pool.tenant_id }}</dd>
11
11
 
12
 
    <dt>{% trans "VIP ID: " %}</dt>
 
12
    <dt>{% trans "VIP ID:" %}</dt>
13
13
    <dd>{{ pool.vip_id }}</dd>
14
14
 
15
 
    <dt>{% trans "Name: " %}</dt>
 
15
    <dt>{% trans "Name:" %}</dt>
16
16
    <dd>{{ pool.name }}</dd>
17
17
 
18
 
    <dt>{% trans "Description: " %}</dt>
 
18
    <dt>{% trans "Description:" %}</dt>
19
19
    <dd>{{ pool.description }}</dd>
20
20
 
21
 
    <dt>{% trans "Subnet ID: " %}</dt>
 
21
    <dt>{% trans "Subnet ID:" %}</dt>
22
22
    <dd>{{ pool.subnet_id }}</dd>
23
23
 
24
 
    <dt>{% trans "Protocol: " %}</dt>
 
24
    <dt>{% trans "Protocol:" %}</dt>
25
25
    <dd>{{ pool.protocol }}</dd>
26
26
 
27
 
    <dt>{% trans "Load Balancing Method: " %}</dt>
 
27
    <dt>{% trans "Load Balancing Method:" %}</dt>
28
28
    <dd>{{ pool.lb_method }}</dd>
29
29
 
30
 
    <dt>{% trans "Members: " %}</dt>
 
30
    <dt>{% trans "Members:" %}</dt>
31
31
    <dd>{{ pool.members }}</dd>
32
32
 
33
 
    <dt>{% trans "Health Monitors: " %}</dt>
 
33
    <dt>{% trans "Health Monitors:" %}</dt>
34
34
    <dd>{{ pool.health_monitors }}</dd>
35
35
 
36
 
    <dt>{% trans "Admin State Up: " %}</dt>
 
36
    <dt>{% trans "Admin State Up:" %}</dt>
37
37
    <dd>{{ pool.admin_state_up }}</dd>
38
38
 
39
 
    <dt>{% trans "Status: " %}</dt>
 
39
    <dt>{% trans "Status:" %}</dt>
40
40
    <dd>{{ pool.status }}</dd>
41
41
  </dl>
42
42
</div>