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

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/project/data_processing/nodegroup_templates/templates/data_processing.nodegroup_templates/_service_confs.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-07-25 11:39:09 UTC
  • mfrom: (1.1.42)
  • Revision ID: package-import@ubuntu.com-20140725113909-b8920pdy87itn1ro
Tags: 1:2014.2~b2-0ubuntu1
* New upstream release.
* debian/patches/ubuntu_settings.patch: Refresed
* debian/patches/fix-dashboard-manage.patch: Refreshed
* debian/patches/fix-dashboard-django-wsgi.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% load i18n sizeformat %}
 
2
<h3>{% trans "Service Configurations" %}</h3>
 
3
<div class="status row-fluid detail">
 
4
    <dl>
 
5
        {% for service, config in template.node_configs.items %}
 
6
        <dt>{{ service }}</dt>
 
7
        <dd>
 
8
            {% if config %}
 
9
            <ul>
 
10
                {% for conf_name, conf_val in config.items %}
 
11
                    <li>
 
12
                        {{ conf_name }}:&nbsp{{ conf_val }}
 
13
                    </li>
 
14
                {% endfor %}
 
15
            </ul>
 
16
            {% else %}
 
17
            <h6>No configurations</h6>
 
18
            {% endif %}
 
19
        </dd>
 
20
        {% endfor %}
 
21
    </dl>
 
22
 
 
23
</div>
 
 
b'\\ No newline at end of file'