templates/sent_sgd_confirm.html
author nishanth
Fri, 03 Sep 2010 16:31:22 +0530
branchanoop
changeset 244 f0d2036b6613
parent 116 54ced1b9e010
permissions -rw-r--r--
moved template to correct place
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 %}