templates/send_sgd_cnf.html
branchanoop
changeset 108 9363e5121f9b
child 116 54ced1b9e010
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/templates/send_sgd_cnf.html	Fri Jul 16 18:50:52 2010 +0530
@@ -0,0 +1,49 @@
+{% extends 'base.html' %}
+{% block title %}
+Send Event Participation Confirmation
+{% endblock %}
+{% block content %}
+<form action="" method=post>
+Not Selected ppl: <br >
+<table cellspacing=2 cellpadding=2>
+{% for m in not_selected %}
+<tr>
+<td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td>
+<td> {{m}} </td>
+<td> {{m.gender}} </td>
+<td> {{m.profession}}</td>
+<td> {{m.affiliated_to}} </td>
+</tr>
+{% endfor %}
+</table>
+<br />
+Not Confirmed Ppl: <br />
+<table cellspacing=2 cellpadding=2>
+{% for m in not_confirmed %}
+<tr>
+<td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td>
+<td> {{m}} </td>
+<td> {{m.gender}} </td>
+<td> {{m.profession}}</td>
+<td> {{m.affiliated_to}} </td>
+</tr>
+{% endfor %}
+</table>
+
+<input type=submit value=send />
+</form>
+
+Attending Ppl: <br />
+<table cellspacing=2 cellpadding=2>
+{% for m in attending %}
+<tr>
+<td> {{m}} </td>
+<td> {{m.gender}} </td>
+<td> {{m.profession}}</td>
+<td> {{m.affiliated_to}} </td>
+</tr>
+{% endfor %}
+</table>
+
+{% endblock %}
+