equal
deleted
inserted
replaced
2 {% block title %} |
2 {% block title %} |
3 Send Event Participation Confirmation |
3 Send Event Participation Confirmation |
4 {% endblock %} |
4 {% endblock %} |
5 {% block content %} |
5 {% block content %} |
6 <form action="" method=post> |
6 <form action="" method=post> |
7 Not Selected ppl: <br > |
7 Not Selected ppl: {{not_selected.count}}<br > |
8 <table cellspacing=2 cellpadding=2> |
8 <table cellspacing=2 cellpadding=2> |
9 {% for m in not_selected %} |
9 {% for m in not_selected %} |
10 <tr> |
10 <tr> |
11 <td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td> |
11 <td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td> |
12 <td> {{m}} </td> |
12 <td> {{m}} </td> |
15 <td> {{m.affiliated_to}} </td> |
15 <td> {{m.affiliated_to}} </td> |
16 </tr> |
16 </tr> |
17 {% endfor %} |
17 {% endfor %} |
18 </table> |
18 </table> |
19 <br /> |
19 <br /> |
20 Selected but not Confirmed Ppl: <br /> |
20 Selected but not Confirmed Ppl: {{not_confirmed.count}}<br /> |
21 <table cellspacing=2 cellpadding=2> |
21 <table cellspacing=2 cellpadding=2> |
22 {% for m in not_confirmed %} |
22 {% for m in not_confirmed %} |
23 <tr> |
23 <tr> |
24 <td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td> |
24 <td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td> |
25 <td> {{m}} </td> |
25 <td> {{m}} </td> |
30 {% endfor %} |
30 {% endfor %} |
31 </table> |
31 </table> |
32 |
32 |
33 <input type=submit value="Send confirmation email" /> |
33 <input type=submit value="Send confirmation email" /> |
34 </form> |
34 </form> |
35 |
35 <br /><br /> |
36 Attending Ppl: <br /> |
36 Attending Ppl: {{attending.count}}<br /> |
37 <table cellspacing=2 cellpadding=2> |
37 <table cellspacing=2 cellpadding=2> |
38 {% for m in attending %} |
38 {% for m in attending %} |
39 <tr> |
39 <tr> |
40 <td> {{m}} </td> |
40 <td> {{m}} </td> |
41 <td> {{m.gender}} </td> |
41 <td> {{m.gender}} </td> |