--- a/templates/send_workshop_confirm.html Wed Jul 14 21:04:59 2010 +0530
+++ b/templates/send_workshop_confirm.html Thu Jul 15 01:06:32 2010 +0530
@@ -4,7 +4,15 @@
{% endblock %}
{% block content %}
<form action="" method=post>
- {{ form.as_p }}
- <input type=submit value=send />
+<table cellspacing=2 cellpadding=2>
+{% for m in matches %}
+<tr>
+<td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td>
+<td> {{m.first_name}} </td>
+<td> {{m.gender}} </td>
+</tr>
+{% endfor %}
+</table>
+<input type=submit value=send />
</form>
{% endblock %}