author | anoop |
Thu, 19 Aug 2010 20:06:45 +0530 | |
branch | anoop |
changeset 232 | 1bfac108ed6c |
parent 159 | f2f389e688fb |
permissions | -rw-r--r-- |
159
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
2 |
{% block title %} |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
3 |
Sent Accomodation Confirmation |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
4 |
{% endblock %} |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
5 |
{% block content %} |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
6 |
Confirmation mail was sent to the following users |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
7 |
<ul> |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
8 |
{% for u in selected_users %} |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
9 |
<li> {{u}} </li> |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
10 |
{% endfor %} |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
11 |
</ul> |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
12 |
<a href="/sage_days/registration/send_acco_cnf">Return to previous page</a> |
f2f389e688fb
created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff
changeset
|
13 |
{% endblock %} |