Mercurial > public > sg101
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gpp/templates/contact/contact_form.html Mon Apr 06 02:43:12 2009 +0000 @@ -0,0 +1,17 @@ +{% extends 'base.html' %} +{% block title %}Contact{% endblock %} +{% block content %} +<h2>Contact Us</h2> +<p>Please use the following form to contact the site management. Your feedback and comments are very +important to us.</p> +<form action="{% url contact.views.contact_form %}" method="post"> +<table> + <tr><th>{{ form.name.label }}:</th><td>{{ form.name.errors }}{{ form.name }}</td></tr> + <tr><th>{{ form.email.label }}:</th><td>{{ form.email.errors }}{{ form.email }}</td></tr> + <tr><th>{{ form.subject.label }}:</th><td>{{ form.subject.errors }}{{ form.subject }}</td></tr> + <tr style="display:none"><th>{{ form.honeypot.label }}:</th><td>{{ form.honeypot }}</td></tr> + <tr><th>{{ form.message.label }}:</th><td>{{ form.message.errors }}{{ form.message }}</td></tr> + <tr><td> </td><td><input type="submit" value="Send" /></td></tr> +</table> +</form> +{% endblock %}