| author | nishanth |
| Fri, 16 Jul 2010 10:24:01 +0530 | |
| branch | anoop |
| changeset 103 | f874ddbd7952 |
| parent 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>
|
| 101 | 11 |
<td> {{m}} </td>
|
|
93
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
12 |
<td> {{m.gender}} </td>
|
| 101 | 13 |
<td> {{m.profession}}</td>
|
14 |
<td> {{m.affiliated_to}} </td>
|
|
|
93
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
15 |
</tr> |
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
16 |
{% endfor %}
|
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
17 |
</table> |
|
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
90
diff
changeset
|
18 |
<input type=submit value=send /> |
|
90
1a6e1af98624
now selecting users through forms. created a form for that
nishanth
parents:
89
diff
changeset
|
19 |
</form> |
| 86 | 20 |
{% endblock %}
|