From f0868a896be6b1569076bf485b38a2eaa7636624 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Fri, 2 Sep 2016 09:59:17 +1000 Subject: [PATCH] Adds report HTML view --- pinaxcon/templates/registrasion/report.html | 31 +++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 pinaxcon/templates/registrasion/report.html 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 %}