Browse Source

Reorder node items again

pm2
Luke Childs 9 years ago
parent
commit
dbcfe04706
  1. 24
      views/node.html

24
views/node.html

@ -48,6 +48,14 @@
<section class="config"> <section class="config">
<h3>Config</h3> <h3>Config</h3>
<dl> <dl>
{% if node.type %}
<dt>Type</dt>
<dd>{{ node.type | title }}</dd>
{% endif %}
{% if node.platform %}
<dt>Platform</dt>
<dd>{{ node.platform }}</dd>
{% endif %}
{% if node.or_addresses.length %} {% if node.or_addresses.length %}
<dt>Or Addresses</dt> <dt>Or Addresses</dt>
{% for address in node.or_addresses %} {% for address in node.or_addresses %}
@ -70,24 +78,16 @@
<dd>{{ rule }}</dd> <dd>{{ rule }}</dd>
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% if node.host_name %}
<dt>Hostname</dt>
<dd>{{ node.host_name }}</dd>
{% endif %}
{% if node.platform %}
<dt>Platform</dt>
<dd>{{ node.platform }}</dd>
{% endif %}
{% if node.type %}
<dt>Type</dt>
<dd>{{ node.type | title }}</dd>
{% endif %}
</dl> </dl>
</section> </section>
<section class="meta"> <section class="meta">
<h3>Meta</h3> <h3>Meta</h3>
<dl> <dl>
{% if node.host_name %}
<dt>Hostname</dt>
<dd>{{ node.host_name }}</dd>
{% endif %}
{% if node.contact %} {% if node.contact %}
<dt>Contact</dt> <dt>Contact</dt>
<dd>{{ node.contact }}</dd> <dd>{{ node.contact }}</dd>

Loading…
Cancel
Save