templates/send_workshop_confirm.html
branchanoop
changeset 161 c7c5c727a483
parent 160 2f01af211af9
child 162 27dd4494e7b4
equal deleted inserted replaced
160:2f01af211af9 161:c7c5c727a483
     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 %}