project/templates/registration/download-csv.html
changeset 1 fda1c66b25f9
child 96 178b89a3ca4f
--- /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 %}
+<h1>Edit Registration</h1>
+
+{% include '_errors.html' %}
+
+<form action=""
+      method="post">
+    <fieldset>
+        <legend>Select Registrations</legend>
+        <table class="kiwipycon-default">
+            {{ form }}
+        </table>
+        <button class="button left"
+                type="submit">
+            Submit
+        </button>
+    </fieldset>
+</form>
+
+{% if no_results %}
+<p>{{ no_results }}</p>
+{% endif %}
+{% if results %}
+<table>
+{% for reg in results %}
+<tr>
+    <td>{{reg.registrant.get_full_name }}</td>
+    <td>{{reg.registrant.email }}</td>
+    <td>{{reg.amount }}</td>
+    <td>{{reg.payment }}</td>
+    <td>{{reg.party }}</td>
+</tr>
+{% endfor %}
+</table>
+{% endif %}
+{% endblock content %}
+