From 7e38fd922a8dd4742d09758cd1c94fb0302045d3 Mon Sep 17 00:00:00 2001 From: Parth Buch Date: Tue, 28 Aug 2012 17:03:37 +0530 Subject: Reboot for scipy 2012 --- project/templates/registration/download-csv.html | 41 ++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 project/templates/registration/download-csv.html (limited to 'project/templates/registration/download-csv.html') diff --git a/project/templates/registration/download-csv.html b/project/templates/registration/download-csv.html new file mode 100644 index 0000000..69df90f --- /dev/null +++ b/project/templates/registration/download-csv.html @@ -0,0 +1,41 @@ +{% extends "admin/base_site.html" %} + +{% block title %}Download Registrations{% endblock %} + +{% block content %} +

Edit Registration

+ +{% include '_errors.html' %} + +
+
+ Select Registrations + + {{ form }} +
+ +
+
+ +{% if no_results %} +

{{ no_results }}

+{% endif %} +{% if results %} + +{% for reg in results %} + + + + + + + +{% endfor %} +
{{reg.registrant.get_full_name }}{{reg.registrant.email }}{{reg.amount }}{{reg.payment }}{{reg.party }}
+{% endif %} +{% endblock content %} + -- cgit