templates/send_invi.html
author nishanth
Wed, 14 Jul 2010 20:19:10 +0530
branchanoop
changeset 88 33200c7d163a
parent 56 7dfacad8adee
permissions -rw-r--r--
fixed a typo

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