templates/send_invi.html
author nishanth
Fri, 03 Sep 2010 16:31:22 +0530
branchanoop
changeset 244 f0d2036b6613
parent 56 7dfacad8adee
permissions -rw-r--r--
moved template to correct place
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 %}