diff -r 9a77edda77b7 -r fda1c66b25f9 project/templates/registration/download-csv.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/project/templates/registration/download-csv.html Fri Oct 30 15:09:12 2009 +0530 @@ -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 %} +