author | nishanth |
Tue, 20 Jul 2010 12:59:40 +0530 | |
branch | anoop |
changeset 143 | a752dc99e23c |
parent 116 | 54ced1b9e010 |
permissions | -rw-r--r-- |
116
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
1 |
{% extends 'base.html' %} |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
2 |
{% block title %} |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
3 |
Sent Sage Days Participaton Confirmation |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
4 |
{% endblock %} |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
5 |
{% block content %} |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
6 |
Confirmation mail was sent to the following users |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
7 |
<ul> |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
8 |
{% for u in selected_users %} |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
9 |
<li> {{u}} </li> |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
10 |
{% endfor %} |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
11 |
</ul> |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
12 |
<a href="/sage_days/registration/send_sgd_cnf">Return to previous page</a> |
54ced1b9e010
fixed a typo and added new template for confirmation of sending mail to selected participants
nishanth
parents:
diff
changeset
|
13 |
{% endblock %} |