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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
86
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     2
{% block title %}
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     3
Workshop Confirmaton Mail
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     4
{% endblock %}
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     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
9def10724853 added more fields in selecting users for workshop
nishanth
parents: 93
diff changeset
    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
9def10724853 added more fields in selecting users for workshop
nishanth
parents: 93
diff changeset
    13
<td> {{m.profession}}</td>
9def10724853 added more fields in selecting users for workshop
nishanth
parents: 93
diff changeset
    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
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
    20
{% endblock %}