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

{{ title }}

- - {% if form %} -
- {{ form | bootstrap}} -
- -
- {% endif %} -
- -{% for report in reports %} - -
- View as CSV -
- -

{{ report.title }}

- - - - {% for heading in report.headings %} - - {% endfor %} - - {% for line in report.rows %} - - {% for item in line %} - - {% endfor %} - - {% endfor %} -
{{ heading }}
- {{ item|safe }} -
-{% endfor %} - -{% endblock %}