templates/sent_wsp_confirm.html
author nishanth
Fri, 03 Sep 2010 16:23:17 +0530
branchanoop
changeset 241 ac1f13b2b3dc
parent 93 505989755cd8
permissions -rw-r--r--
included the url
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 %}