templates/send_invi.html
author Anoop Jacob Thomas<anoop@fossee.in>
Tue, 09 Nov 2010 13:40:41 +0530
branchanoop
changeset 248 73ad1c61bb74
parent 56 7dfacad8adee
permissions -rw-r--r--
Fixed a bug.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
56
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
     2
{% block title %}
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
     3
Send Invitations
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
     4
{% endblock %}
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
     5
{% block content %}
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
     6
{% if form %}
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
     7
<form action="" method="post">
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
     8
{{form.as_p}}
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
     9
<input type=submit value="send mails">
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
    10
</form>
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
    11
{% else %}
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
    12
Successfully sent emails to:<br />
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
    13
{{ emails|unordered_list}}
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
    14
{% endif %}
7dfacad8adee provided an interface for sending out emails
nishanth
parents:
diff changeset
    15
{% endblock %}