annotate gpp/templates/forums/favorite_status.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 a46788862737
children 593fb6dbd449
rev   line source
bgneal@232 1 {% extends 'base.html' %}
bgneal@232 2 {% block title %}Forums: Favorite Topics{% endblock %}
bgneal@232 3 {% block content %}
bgneal@232 4 <h2>Forums: Favorite Topics</h2>
bgneal@232 5 <h3>
bgneal@232 6 <a href="{% url forums-index %}">SurfGuitar101 Forum Index</a> &raquo;
bgneal@232 7 <a href="{% url forums-forum_index slug=topic.forum.slug %}">{{ topic.forum.name }}</a> &raquo;
bgneal@232 8 <a href="{% url forums-topic_index id=topic.id %}">{{ topic.name }}</a>
bgneal@232 9 </h3>
bgneal@232 10 <p>
bgneal@232 11 {% if is_favorite %}
bgneal@232 12 The forum topic <a href="{{ topic.get_absolute_url }}">{{ topic.name }}</a> has been added to your
bgneal@232 13 <a href="{% url forums-manage_favorites %}">favorites</a>.
bgneal@232 14 {% else %}
bgneal@232 15 The forum topic <a href="{{ topic.get_absolute_url }}">{{ topic.name }}</a> has been removed from your
bgneal@232 16 <a href="{% url forums-manage_favorites %}">favorites</a>.
bgneal@232 17 {% endif %}
bgneal@232 18 </p>
bgneal@232 19 <p>
bgneal@232 20 To manage all your forum topic favorites, please visit your
bgneal@232 21 <a href="{% url forums-manage_favorites %}">favorites page</a>.
bgneal@232 22 </p>
bgneal@232 23 {% endblock %}