2008-05-07 11:04:18 +02:00
|
|
|
{% extends "helpdesk/base.html" %}{% load i18n %}
|
2008-04-02 01:26:12 +02:00
|
|
|
|
2008-05-07 11:04:18 +02:00
|
|
|
{% block helpdesk_title %}{% trans "Reports & Statistics" %}{% endblock %}
|
2008-04-02 01:26:12 +02:00
|
|
|
|
|
|
|
{% block helpdesk_body %}
|
2008-05-07 11:04:18 +02:00
|
|
|
<h2>{% trans "Reports & Statistics" %}</h2>
|
2008-04-02 01:26:12 +02:00
|
|
|
|
|
|
|
<table>
|
2008-10-25 00:52:34 +02:00
|
|
|
<tr class='row_tablehead'><td colspan='{{ headings|length }}'>{{ title }}</td></tr>
|
|
|
|
<tr class='row_columnheads'>{% for h in headings %}<th>{% if forloop.first %}{{ h|title }}{% else %}{{ h }}{% endif %}</th>{% endfor %}</tr>
|
|
|
|
{% for d in data %}
|
|
|
|
<tr class='row_{% cycle odd,even %}'>{% for f in d %}<td>{{ f }}</td>{% endfor %}</tr>{% endfor %}
|
2008-04-02 01:26:12 +02:00
|
|
|
</table>
|
|
|
|
|
|
|
|
{% if chart %}<img src='{{ chart }}' />{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|