templates/sent_acco_confirm.html
author nishanth
Fri, 03 Sep 2010 16:31:22 +0530
branchanoop
changeset 244 f0d2036b6613
parent 159 f2f389e688fb
permissions -rw-r--r--
moved template to correct place
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
159
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
     2
{% block title %}
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
     3
Sent Accomodation Confirmation
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
     4
{% endblock %}
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
     5
{% block content %}
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
     6
Confirmation mail was sent to the following users
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
     7
<ul>
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
     8
{%  for u in selected_users %}
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
     9
<li> {{u}} </li>
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
    10
{% endfor %}
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
    11
</ul>
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
    12
<a href="/sage_days/registration/send_acco_cnf">Return to previous page</a>
f2f389e688fb created template for displaying the ppl whom acco confirm mail was sent to
nishanth
parents:
diff changeset
    13
{% endblock %}