annotate gpp/templates/weblinks/navigation.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
bgneal@26 1 <div class="app-logo">
bgneal@26 2 <img src="{{ MEDIA_URL }}icons/weblinks-logo.jpg" alt="Links Logo" title="Links" />
bgneal@26 3 </div>
bgneal@21 4 <ul class="app-menu">
bgneal@242 5 <li><a href="{% url weblinks-main %}">Categories</a></li>
bgneal@242 6 <li><a href="{% url weblinks-new_links %}">New</a></li>
bgneal@242 7 <li><a href="{% url weblinks-popular_links %}">Popular</a></li>
bgneal@21 8 {% if user.is_authenticated %}
bgneal@242 9 <li><a href="{% url weblinks-add_link %}">Add Link</a></li>
bgneal@21 10 {% endif %}
bgneal@21 11 </ul>
bgneal@165 12 <center>
bgneal@242 13 <form action="{% url weblinks-random_link %}" method="post">{% csrf_token %}
bgneal@165 14 <input type="submit" value="Visit a Random Link" />
bgneal@165 15 </form>
bgneal@165 16 </center>