| author | nishanth |
| Thu, 15 Jul 2010 01:06:32 +0530 | |
| branch | anoop |
| changeset 93 | 505989755cd8 |
| parent 90 | 1a6e1af98624 |
| child 101 | 9def10724853 |
| permissions | -rw-r--r-- |
| 86 | 1 |
{% extends 'base.html' %}
|
2 |
{% block title %}
|
|
3 |
Workshop Confirmaton Mail |
|
4 |
{% endblock %}
|
|
5 |
{% block content %}
|
|
|
90
1a6e1af98624
now selecting users through forms. created a form for that
nishanth
parents:
89
diff
changeset
|
6 |
<form action="" method=post> |
|
93
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
7 |
<table cellspacing=2 cellpadding=2> |
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
8 |
{% for m in matches %}
|
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
9 |
<tr> |
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
10 |
<td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td>
|
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
11 |
<td> {{m.first_name}} </td>
|
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
12 |
<td> {{m.gender}} </td>
|
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
13 |
</tr> |
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
14 |
{% endfor %}
|
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
15 |
</table> |
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
16 |
<input type=submit value=send /> |
|
90
1a6e1af98624
now selecting users through forms. created a form for that
nishanth
parents:
89
diff
changeset
|
17 |
</form> |
| 86 | 18 |
{% endblock %}
|