templates/send_acco_cnf.html
author nishanth
Mon, 26 Jul 2010 17:46:36 +0530
branchanoop
changeset 176 faa42e8fa399
parent 153 55f338569133
child 177 bbcf2a7d8b6b
permissions -rw-r--r--
renamed a few variables in view and made corresponding changes in template
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
153
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
     2
{% block title %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
     3
Send Accomodation Confirmation
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
     4
{% endblock %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
     5
{% block content %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
     6
<form action="" method=post>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
     7
Not Selected ppl: {{not_selected.count}}<br >
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
     8
<table cellspacing=2 cellpadding=2>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
     9
{% for m in not_selected %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    10
<tr>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    11
<td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    12
<td> {{m}} </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    13
<td> {{m.gender}} </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    14
<td> {{m.profession}}</td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    15
<td> {{m.affiliated_to}} </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    16
</tr>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    17
{% endfor %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    18
</table>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    19
<br />
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    20
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    21
Rejected Ppl: {{rejected.count}}<br />
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    22
<table cellspacing=2 cellpadding=2>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    23
{% for m in rejected %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    24
<tr>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    25
<td> <input type="checkbox" name="selected_users" value="{{m.id}}" id="id_selected_users_0" /> </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    26
<td> {{m}} </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    27
<td> {{m.gender}} </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    28
<td> {{m.profession}}</td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    29
<td> {{m.affiliated_to}} </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    30
</tr>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    31
{% endfor %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    32
</table>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    33
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    34
<input type=submit value="Send confirmation email"  />
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    35
</form>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    36
<br /><br />
176
faa42e8fa399 renamed a few variables in view and made corresponding changes in template
nishanth
parents: 153
diff changeset
    37
Selected Ppl: {{selected_confirmed.count}}<br />
153
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    38
<table cellspacing=2 cellpadding=2>
176
faa42e8fa399 renamed a few variables in view and made corresponding changes in template
nishanth
parents: 153
diff changeset
    39
{% for m in selected %}
153
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    40
<tr>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    41
<td> {{m}} </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    42
<td> {{m.gender}} </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    43
<td> {{m.profession}}</td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    44
<td> {{m.affiliated_to}} </td>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    45
</tr>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    46
{% endfor %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    47
</table>
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    48
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    49
{% endblock %}
55f338569133 updated the view for GET part and created corresponding template
nishanth
parents:
diff changeset
    50