symposion_app/pinaxcon/templates/registrasion/reports_list.html
2018-10-01 13:32:56 +13:00

20 lines
373 B
HTML

{% extends "site_base.html" %}
{% load registrasion_tags %}
{% block content %}
<h2>Registration reports</h2>
<table class="table table-striped">
{% for report in reports %}
<tr>
<td>
<a href="{{ report.url }}">{{ report.name }}</a>
</td>
<td>
{{ report.description }}
</td>
</tr>
{% endfor %}
</table>
{% endblock %}