templates/send_cust_invi.html
author Anoop Jacob Thomas<anoop@fossee.in>
Tue, 09 Nov 2010 12:02:42 +0530
branchanoop
changeset 246 3a32df4b3171
permissions -rw-r--r--
added custom invitation mail page.

{% extends 'base.html' %}
{% block title %}
Send Custom 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 %}