annotate gpp/templates/weblinks/view_links.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 7e8d2dda99e3
children daa2916f5b34
rev   line source
gremmie@1 1 {% extends 'weblinks/base.html' %}
gremmie@1 2 {% block title %}Web Links: {{ category.title }}{% endblock %}
gremmie@1 3 {% block weblinks_css %}
gremmie@1 4 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/tab-nav.css" />
gremmie@1 5 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/pagination.css" />
gremmie@1 6 {% endblock %}
bgneal@165 7 {% block weblinks_js %}
bgneal@165 8 <script type="text/javascript" src="{{ MEDIA_URL }}js/weblinks.js"></script>
bgneal@165 9 {% endblock %}
gremmie@1 10 {% block weblinks_content %}
gremmie@1 11 <h3>Category: {{ category.title }}</h3>
gremmie@1 12
gremmie@1 13 {% if page.object_list %}
gremmie@1 14 <ul class="tab-nav">
bgneal@242 15 <li><a href="{% url weblinks-view_links slug=category.slug sort="title" %}"
gremmie@1 16 {% ifequal s "title" %}class="active" {% endifequal %}>Title</a></li>
bgneal@242 17 <li><a href="{% url weblinks-view_links slug=category.slug sort="date" %}"
gremmie@1 18 {% ifequal s "date" %}class="active"{% endifequal %}>Date</a></li>
bgneal@242 19 <li><a href="{% url weblinks-view_links slug=category.slug sort="hits" %}"
gremmie@1 20 {% ifequal s "hits" %}class="active"{% endifequal %}>Hits</a></li>
gremmie@1 21 </ul>
gremmie@1 22
gremmie@1 23 {% include 'core/pagination.html' %}
gremmie@1 24
gremmie@1 25 <dl>
gremmie@1 26 {% for link in page.object_list %}
gremmie@1 27 {% include 'weblinks/link.html' %}
gremmie@1 28 {% endfor %}
gremmie@1 29 </dl>
gremmie@1 30
gremmie@1 31 {% include 'core/pagination.html' %}
gremmie@1 32 {% endif %}
gremmie@1 33 {% endblock %}