templates/send_workshop_confirm.html
branchanoop
changeset 93 505989755cd8
parent 90 1a6e1af98624
child 101 9def10724853
equal deleted inserted replaced
92:9f305face605 93:505989755cd8
     2 {% block title %}
     2 {% block title %}
     3 Workshop Confirmaton Mail
     3 Workshop Confirmaton Mail
     4 {% endblock %}
     4 {% endblock %}
     5 {% block content %}
     5 {% block content %}
     6 <form action="" method=post>
     6 <form action="" method=post>
     7 		{{ form.as_p }}
     7 <table cellspacing=2 cellpadding=2>
     8 		<input type=submit value=send />
     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.first_name}} </td>
       
    12 <td> {{m.gender}} </td>
       
    13 </tr>
       
    14 {% endfor %}
       
    15 </table>
       
    16 <input type=submit value=send />
     9 </form>
    17 </form>
    10 {% endblock %}
    18 {% endblock %}