Added a new diagnostics tab under the tools menu

This commit is contained in:
Roberto Rosario
2011-03-21 01:00:56 -04:00
parent 1271037974
commit 447b2f2817
8 changed files with 59 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
{% extends "base.html" %}
{% block title %} :: {{ title|capfirst }}{% endblock %}
{% block content %}
{% for key, value in blocks.items %}
<div class="content">
<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>
</p>
</div></div>
{% endfor %}
{% endblock %}