summaryrefslogtreecommitdiffstats
path: root/reports/brpt/reports/templates/clients/client-nodebox.html
diff options
context:
space:
mode:
Diffstat (limited to 'reports/brpt/reports/templates/clients/client-nodebox.html')
-rw-r--r--reports/brpt/reports/templates/clients/client-nodebox.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/reports/brpt/reports/templates/clients/client-nodebox.html b/reports/brpt/reports/templates/clients/client-nodebox.html
index e92a5a874..dade598cf 100644
--- a/reports/brpt/reports/templates/clients/client-nodebox.html
+++ b/reports/brpt/reports/templates/clients/client-nodebox.html
@@ -31,7 +31,7 @@
<div class="bad">
<span class="nodelisttitle"><a href="javascript:toggleLayer('{{client.name}}-bad');" title="Click to expand" class="commentLink">{{interaction.bad_items.count}}</a> items did not verify and are considered Dirty.<br /></span>
<div class="items" id="{{client.name}}-bad"><ul class="plain">
- {% for bad in interaction.bad_items.all|sortwell %} {% comment %}HOWDOI? order_by('kind', 'name'){% endcomment %}
+ {% for bad in interaction.bad_items.all|sortwell %}
<li><strong>{{bad.kind}}: </strong><tt><a href="/elements/bad/{{bad.id}}">{{bad.name}}</a></tt></li>
{% endfor %}
</ul></div>
@@ -41,7 +41,7 @@
<div class="modified">
<span class="nodelisttitle"><a href="javascript:toggleLayer('{{client.name}}-modified');" title="Click to expand" class="commentLink">{{interaction.modified_items.count}}</a> items were modified in the last run.<br /></span>
<div class="items" id="{{client.name}}-modified"><ul class="plain">
- {% for modified in interaction.modified_items.all|sortwell %} {% comment %}HOWDOI? order_by('kind', 'name'){% endcomment %}
+ {% for modified in interaction.modified_items.all|sortwell %}
<li><strong>{{modified.kind}}: </strong><tt><a href="/elements/modified/{{modified.id}}">{{modified.name}}</a></tt></li>
{% endfor %}
</ul></div>
@@ -51,7 +51,7 @@
<div class="extra">
<span class="nodelisttitle"><a href="javascript:toggleLayer('{{client.name}}-extra');" title="Click to expand" class="commentLink">{{interaction.extra_items.count}}</a> extra configuration elements on the node.<br /></span>
<div class="items" id="{{client.name}}-extra"><ul class="plain">
- {% for extra in interaction.extra_items.all|sortwell %} {% comment %}HOWDOI? order_by('kind', 'name'){% endcomment %}
+ {% for extra in interaction.extra_items.all|sortwell %}
<li><strong>{{extra.kind}}: </strong><tt>{{extra.name}}</tt></li>
{% endfor %}
</ul></div>