Mercurial > public > sg101
annotate gpp/templates/downloads/download.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 | 2022c0409296 |
children | daa2916f5b34 |
rev | line source |
---|---|
gremmie@1 | 1 {% load comment_tags %} |
gremmie@1 | 2 {% get_comment_count for download as comment_count %} |
gremmie@1 | 3 <dt> |
bgneal@208 | 4 {{ download.title }} |
gremmie@1 | 5 </dt> |
gremmie@1 | 6 <dd> |
gremmie@1 | 7 {{ download.html|safe }} |
bgneal@208 | 8 <form action="{% url downloads-download download.id %}" method="post">{% csrf_token %} |
gremmie@1 | 9 <table> |
gremmie@1 | 10 <tr> |
gremmie@1 | 11 <th>Added By:</th> |
gremmie@1 | 12 <td><a href="{% url bio-view_profile download.user.username %}">{{ download.user.username }}</a></td> |
gremmie@1 | 13 <th>Date:</th><td>{{ download.date_added|date:"M d, Y" }}</td> |
gremmie@1 | 14 <th>Size:</th><td>{{ download.size }}</td> |
gremmie@1 | 15 </tr> |
gremmie@1 | 16 <tr> |
gremmie@1 | 17 <th>Category:</th><td>{{ download.category.title }}</td> |
bgneal@208 | 18 <th>Downloads:</th><td>{{ download.hits }}</td> |
gremmie@1 | 19 </tr> |
gremmie@1 | 20 <tr> |
gremmie@1 | 21 <th>Rating:</th><td><div class="rating" id="rating-{{ download.id }}">{{ download.average_score|floatformat }}</div></td> |
bgneal@15 | 22 <th><img src="{{ MEDIA_URL }}icons/comments.png" alt="Comments" title="Comments" /> |
bgneal@23 | 23 <a href="{% url downloads-details download.id %}">Comments</a>:</th><td>{{ comment_count }}</td> |
gremmie@1 | 24 </tr> |
bgneal@208 | 25 <tr><td><input type="submit" value="Download Now" /></td></tr> |
gremmie@1 | 26 </table> |
bgneal@208 | 27 </form> |
gremmie@1 | 28 </dd> |