templates/sent_sgd_confirm.html
author Anoop Jacob Thomas<anoop@fossee.in>
Tue, 09 Nov 2010 13:40:41 +0530
branchanoop
changeset 248 73ad1c61bb74
parent 116 54ced1b9e010
permissions -rw-r--r--
Fixed a bug.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 %}