diff --git a/pinaxcon/templates/registrasion/report.html b/pinaxcon/templates/registrasion/report.html index 03232f08f56855eded22fdd89524d56e0770d635..a76061883d757dac0cd292961bccec5cc39411b9 100644 --- a/pinaxcon/templates/registrasion/report.html +++ b/pinaxcon/templates/registrasion/report.html @@ -15,24 +15,27 @@ {% endif %}
- - - {% for heading in report.headings %} - - {% endfor %} - - {% for line in report.data %} +{% for report in reports %} +

{{ report.title }}

+
{{ heading }}
- {% for item in line %} - + {% for heading in report.headings %} + {% endfor %} - {% endfor %} -
- {% if report.link_view and forloop.counter0 == 0 %} - - {% endif %} - {{ item }} - {{ heading }}
+ {% for line in report.data %} + + {% for item in line %} + + {% if report.link_view and forloop.counter0 == 0 %} + + {% endif %} + {{ item }} + + {% endfor %} + + {% endfor %} + +{% endfor %} {% endblock %}