templates/sent_acco_confirm.html
author Madhusudan.C.S <madhusudancs@fossee.in>
Mon, 02 Aug 2010 18:02:52 +0530
branchanoop
changeset 204 a190811581a8
parent 159 f2f389e688fb
permissions -rw-r--r--
Added a script to generate CSV of full name and gender of participants who have confirmed participation.

{% extends 'base.html' %}
{% block title %}
Sent Accomodation Confirmation
{% endblock %}
{% block content %}
Confirmation mail was sent to the following users
<ul>
{%  for u in selected_users %}
<li> {{u}} </li>
{% endfor %}
</ul>
<a href="/sage_days/registration/send_acco_cnf">Return to previous page</a>
{% endblock %}