{% 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>
{{ report.description }}
</tr>
{% endfor %}
</table>
{% endblock %}