templates/send_invi.html
author nishanth
Sun, 06 Jun 2010 17:32:50 +0530
branchanoop
changeset 56 7dfacad8adee
permissions -rw-r--r--
provided an interface for sending out emails

{% 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 %}