templates/send_workshop_confirm.html
author nishanth
Thu, 15 Jul 2010 14:06:58 +0530
branchanoop
changeset 94 b38de804ff4d
parent 93 505989755cd8
child 101 9def10724853
permissions -rw-r--r--
created template for confirming workshop participation

{% extends 'base.html' %}
{% block title %}
Workshop Confirmaton Mail
{% endblock %}
{% block content %}
<form action="" method=post>
<table cellspacing=2 cellpadding=2>
{% for m in matches %}
<tr>
<td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td>
<td> {{m.first_name}} </td>
<td> {{m.gender}} </td>
</tr>
{% endfor %}
</table>
<input type=submit value=send />
</form>
{% endblock %}