templates/send_invi.html
author nishanth
Sat, 17 Jul 2010 01:14:36 +0530
branchanoop
changeset 124 d4a7644e7fe8
parent 56 7dfacad8adee
permissions -rw-r--r--
created a form for taking participant info and used it in the view

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