author | anoop |
Mon, 02 Aug 2010 21:23:37 +0530 | |
branch | anoop |
changeset 206 | f2d738abba0d |
parent 93 | 505989755cd8 |
permissions | -rw-r--r-- |
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 %} |