mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-30 03:43:46 +01:00
16 lines
394 B
HTML
16 lines
394 B
HTML
|
{% extends "helpdesk/base.html" %}
|
||
|
|
||
|
{% block helpdesk_title %}Reports & Statistics{% endblock %}
|
||
|
|
||
|
{% block helpdesk_body %}
|
||
|
<h2>Reports & 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 %}
|