templates/send_invi.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 06 Aug 2010 14:41:41 +0530
branchanoop
changeset 219 3d3e4e4afb61
parent 56 7dfacad8adee
permissions -rw-r--r--
Fixed a blatant bug with the looping element in the send mail script for accommodation allotment.

{% extends 'base.html' %}
{% block title %}
Send Invitations
{% endblock %}
{% block content %}
{% if form %}
<form action="" method="post">
{{form.as_p}}
<input type=submit value="send mails">
</form>
{% else %}
Successfully sent emails to:<br />
{{ emails|unordered_list}}
{% endif %}
{% endblock %}