equal
deleted
inserted
replaced
1 {% extends 'base.html' %} |
|
2 {% block title %} |
|
3 Workshop Confirmaton Mail |
|
4 {% endblock %} |
|
5 {% block content %} |
|
6 <form action="" method=post> |
|
7 <table cellspacing=2 cellpadding=2> |
|
8 {% for m in matches %} |
|
9 <tr> |
|
10 <td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td> |
|
11 <td> {{m}} </td> |
|
12 <td> {{m.gender}} </td> |
|
13 <td> {{m.profession}}</td> |
|
14 <td> {{m.affiliated_to}} </td> |
|
15 </tr> |
|
16 {% endfor %} |
|
17 </table> |
|
18 <input type=submit value=send /> |
|
19 </form> |
|
20 {% endblock %} |
|