diff --git a/pinaxcon/templates/registrasion/report.html b/pinaxcon/templates/registrasion/report.html new file mode 100644 index 0000000000000000000000000000000000000000..a76061883d757dac0cd292961bccec5cc39411b9 --- /dev/null +++ b/pinaxcon/templates/registrasion/report.html @@ -0,0 +1,41 @@ +{% extends "site_base.html" %} +{% load bootstrap %} +{% load registrasion_tags %} + +{% block body %} + +

{{ title }}

+ + {% if form %} +
+ {{ form | bootstrap}} +
+ +
+ {% endif %} +
+ +{% for report in reports %} +

{{ report.title }}

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