templates/send_workshop_confirm.html
author nishanth
Wed, 21 Jul 2010 16:57:17 +0530
branchanoop
changeset 152 86bfdb64edb5
parent 101 9def10724853
permissions -rw-r--r--
created basic view for sending acco and added corresponding url

{% 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}} </td>
<td> {{m.gender}} </td>
<td> {{m.profession}}</td>
<td> {{m.affiliated_to}} </td>
</tr>
{% endfor %}
</table>
<input type=submit value=send />
</form>
{% endblock %}