author | nishanth |
Fri, 16 Jul 2010 23:55:36 +0530 | |
branch | anoop |
changeset 113 | b0c34801022a |
parent 108 | 9363e5121f9b |
child 116 | 54ced1b9e010 |
permissions | -rw-r--r-- |
108
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
2 |
{% block title %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
3 |
Send Event Participation Confirmation |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
4 |
{% endblock %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
5 |
{% block content %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
6 |
<form action="" method=post> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
7 |
Not Selected ppl: <br > |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
8 |
<table cellspacing=2 cellpadding=2> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
9 |
{% for m in not_selected %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
10 |
<tr> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
11 |
<td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
12 |
<td> {{m}} </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
13 |
<td> {{m.gender}} </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
14 |
<td> {{m.profession}}</td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
15 |
<td> {{m.affiliated_to}} </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
16 |
</tr> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
17 |
{% endfor %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
18 |
</table> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
19 |
<br /> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
20 |
Not Confirmed Ppl: <br /> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
21 |
<table cellspacing=2 cellpadding=2> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
22 |
{% for m in not_confirmed %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
23 |
<tr> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
24 |
<td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
25 |
<td> {{m}} </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
26 |
<td> {{m.gender}} </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
27 |
<td> {{m.profession}}</td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
28 |
<td> {{m.affiliated_to}} </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
29 |
</tr> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
30 |
{% endfor %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
31 |
</table> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
32 |
|
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
33 |
<input type=submit value=send /> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
34 |
</form> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
35 |
|
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
36 |
Attending Ppl: <br /> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
37 |
<table cellspacing=2 cellpadding=2> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
38 |
{% for m in attending %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
39 |
<tr> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
40 |
<td> {{m}} </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
41 |
<td> {{m.gender}} </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
42 |
<td> {{m.profession}}</td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
43 |
<td> {{m.affiliated_to}} </td> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
44 |
</tr> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
45 |
{% endfor %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
46 |
</table> |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
47 |
|
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
48 |
{% endblock %} |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
diff
changeset
|
49 |