Fixed diagnostics template to correctly render the <li> HTML tag

This commit is contained in:
Roberto Rosario
2011-05-04 00:20:29 -04:00
parent 03c8024893
commit 76b67b90e5

View File

@@ -8,10 +8,12 @@
<h2 class="title">{{ value.title|capfirst }}</h2>
<div class="inner">
<p>
<ul>
{% with value.links as object_navigation_links %}
{% include "generic_navigation.html" %}
{% endwith %}
<ul class="undecorated_list">
{% with value.links as object_navigation_links %}
{% with 'true' as as_li %}
{% include "generic_navigation.html" %}
{% endwith %}
{% endwith %}
</ul>
</p>