templates/send_sgd_cnf.html
author nishanth
Sat, 17 Jul 2010 00:26:16 +0530
branchanoop
changeset 118 6c3602582f9f
parent 116 54ced1b9e010
child 146 a18ba6b30c43
permissions -rw-r--r--
included the send_mail and created the corresponding event in events

{% 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 />
Selected but 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 confirmation email"  />
</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 %}