templates/sent_wsp_confirm.html
author Anoop Jacob Thomas<anoop@fossee.in>
Tue, 09 Nov 2010 13:40:41 +0530
branchanoop
changeset 248 73ad1c61bb74
parent 93 505989755cd8
permissions -rw-r--r--
Fixed a bug.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
93
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
     2
{% block title %}
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
     3
Sent WSP Confirmation
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
     4
{% endblock %}
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
     5
{% block content %}
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
     6
Confirmation mail was sent to the following users
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
     7
<ul>
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
     8
{%  for u in selected_users %}
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
     9
<li> {{u}} </li>
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
    10
{% endfor %}
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
    11
</ul>
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
    12
<a href="/sage_days/registration/send_wsp_cnf">Return to previous page</a>
505989755cd8 modified the form and implemented the view to display selected users
nishanth
parents:
diff changeset
    13
{% endblock %}