annotate gpp/templates/forums/move_topic.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 593fb6dbd449
rev   line source
bgneal@110 1 {% extends 'base.html' %}
bgneal@110 2 {% block title %}Forums: Move Topic{% endblock %}
bgneal@110 3 {% block content %}
bgneal@110 4 <h2>Forums: Move Topic</h2>
bgneal@110 5
bgneal@110 6 <h3>
bgneal@110 7 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
bgneal@110 8 <a href="{% url forums-forum_index slug=forum.slug %}">{{ forum.name }}</a> &raquo;
bgneal@110 9 <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a>
bgneal@110 10 </h3>
bgneal@110 11
bgneal@110 12 <div class="forum-block">
bgneal@194 13 <form action="." method="post">{% csrf_token %}
bgneal@110 14 <fieldset>
bgneal@110 15 <legend>Move Topic: {{ topic.name }}</legend>
bgneal@110 16 {{ form.as_p }}
bgneal@110 17 <input type="submit" value="Move Topic" />
bgneal@110 18 </fieldset>
bgneal@110 19 </form>
bgneal@110 20 </div>
bgneal@110 21 {% endblock %}