annotate gpp/templates/contact/contact_form.html @ 265:1ba2c6bf6eb7

Closing #98. Animated GIFs were losing their transparency and animated properties when saved as avatars. Reworked the avatar save process to only run the avatar through PIL if it is too big. This preserves the original uploaded file if it is within the desired size settings. This may still mangle big animated gifs. If this becomes a problem, then maybe look into calling the PIL Image.resize() method directly. Moved the PIL image specific functions from bio.forms to a new module: core.image for better reusability in the future.
author Brian Neal <bgneal@gmail.com>
date Fri, 24 Sep 2010 02:12:09 +0000
parents 6a5549c2efb5
children daa2916f5b34
rev   line source
gremmie@1 1 {% extends 'base.html' %}
gremmie@1 2 {% block title %}Contact{% endblock %}
gremmie@1 3 {% block content %}
gremmie@1 4 <h2>Contact Us</h2>
gremmie@1 5 <p>Please use the following form to contact the site management. Your feedback and comments are very
gremmie@1 6 important to us.</p>
bgneal@194 7 <form action="{% url contact.views.contact_form %}" method="post">{% csrf_token %}
gremmie@1 8 <table>
gremmie@1 9 <tr><th>{{ form.name.label }}:</th><td>{{ form.name.errors }}{{ form.name }}</td></tr>
gremmie@1 10 <tr><th>{{ form.email.label }}:</th><td>{{ form.email.errors }}{{ form.email }}</td></tr>
gremmie@1 11 <tr><th>{{ form.subject.label }}:</th><td>{{ form.subject.errors }}{{ form.subject }}</td></tr>
gremmie@1 12 <tr style="display:none"><th>{{ form.honeypot.label }}:</th><td>{{ form.honeypot }}</td></tr>
gremmie@1 13 <tr><th>{{ form.message.label }}:</th><td>{{ form.message.errors }}{{ form.message }}</td></tr>
gremmie@1 14 <tr><td>&nbsp;</td><td><input type="submit" value="Send" /></td></tr>
gremmie@1 15 </table>
gremmie@1 16 </form>
gremmie@1 17 {% endblock %}