Mercurial > public > sg101
comparison gpp/templates/contact/contact_form.html @ 1:dbd703f7d63a
Initial import of sg101 stuff from private repository.
author | gremmie |
---|---|
date | Mon, 06 Apr 2009 02:43:12 +0000 |
parents | |
children | 6a5549c2efb5 |
comparison
equal
deleted
inserted
replaced
0:900ba3c7b765 | 1:dbd703f7d63a |
---|---|
1 {% extends 'base.html' %} | |
2 {% block title %}Contact{% endblock %} | |
3 {% block content %} | |
4 <h2>Contact Us</h2> | |
5 <p>Please use the following form to contact the site management. Your feedback and comments are very | |
6 important to us.</p> | |
7 <form action="{% url contact.views.contact_form %}" method="post"> | |
8 <table> | |
9 <tr><th>{{ form.name.label }}:</th><td>{{ form.name.errors }}{{ form.name }}</td></tr> | |
10 <tr><th>{{ form.email.label }}:</th><td>{{ form.email.errors }}{{ form.email }}</td></tr> | |
11 <tr><th>{{ form.subject.label }}:</th><td>{{ form.subject.errors }}{{ form.subject }}</td></tr> | |
12 <tr style="display:none"><th>{{ form.honeypot.label }}:</th><td>{{ form.honeypot }}</td></tr> | |
13 <tr><th>{{ form.message.label }}:</th><td>{{ form.message.errors }}{{ form.message }}</td></tr> | |
14 <tr><td> </td><td><input type="submit" value="Send" /></td></tr> | |
15 </table> | |
16 </form> | |
17 {% endblock %} |