templates/send_invi.html
author nishanth
Wed, 21 Jul 2010 17:37:52 +0530
branchanoop
changeset 159 f2f389e688fb
parent 56 7dfacad8adee
permissions -rw-r--r--
created template for displaying the ppl whom acco confirm mail was sent to

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