templates/send_workshop_confirm.html
author nishanth
Wed, 14 Jul 2010 20:47:37 +0530
branchanoop
changeset 90 1a6e1af98624
parent 89 b8fc66038d0d
child 93 505989755cd8
permissions -rw-r--r--
now selecting users through forms. created a form for that
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
86
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     1
{% extends 'base.html' %}
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     2
{% block title %}
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     3
Workshop Confirmaton Mail
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     4
{% endblock %}
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
     5
{% block content %}
90
1a6e1af98624 now selecting users through forms. created a form for that
nishanth
parents: 89
diff changeset
     6
<form action="" method=post>
1a6e1af98624 now selecting users through forms. created a form for that
nishanth
parents: 89
diff changeset
     7
		{{ form.as_p }}
1a6e1af98624 now selecting users through forms. created a form for that
nishanth
parents: 89
diff changeset
     8
		<input type=submit value=send />
1a6e1af98624 now selecting users through forms. created a form for that
nishanth
parents: 89
diff changeset
     9
</form>
86
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents:
diff changeset
    10
{% endblock %}