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

{{ title }}

+ +
+ {{ form | bootstrap}} +
+ +
+
+ + + + {% for heading in report.headings %} + + {% endfor %} + + {% for line in report.data %} + + {% for item in line %} + + {% endfor %} + + {% endfor %} +
{{ heading }}
{{ item }}
+ +{% endblock %}