django-helpdeskmig/templates/helpdesk/report_output.html
Ross Poulton 7dfb38eab9 * Removed e-mail templates to the database
* Added statistics views, making use of Google Charts
* Added initial data fixture, to automatically create e-mail templates
  at install-time
2008-04-01 23:26:12 +00:00

16 lines
394 B
HTML

{% extends "helpdesk/base.html" %}
{% block helpdesk_title %}Reports & Statistics{% endblock %}
{% block helpdesk_body %}
<h2>Reports &amp; Statistics</h2>
<table>
<tr>{% for h in headings %}<th>{{ h }}</th>{% endfor %}</tr>
{% for d in data %}<tr>{% for f in d %}<td>{{ f }}</td>{% endfor %}</tr>{% endfor %}
</table>
{% if chart %}<img src='{{ chart }}' />{% endif %}
{% endblock %}