annotate gpp/templates/potd/view.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 2d299909e074
children ded03f2513e9
rev   line source
gremmie@1 1 {% extends 'base.html' %}
gremmie@1 2 {% load comment_tags %}
bgneal@6 3 {% load script_tags %}
gremmie@1 4 {% block title %}Photo Of The Day{% endblock %}
gremmie@1 5 {% block custom_css %}
gremmie@1 6 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/potd.css" />
gremmie@1 7 <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}css/comments.css" />
gremmie@1 8 {% endblock %}
gremmie@1 9 {% block custom_js %}
bgneal@127 10 {% script_tags "markitup jquery-ui" %}
gremmie@1 11 <script type="text/javascript" src="{{ MEDIA_URL }}js/comments.js"></script>
gremmie@1 12 {% endblock %}
gremmie@1 13 {% block content %}
bgneal@14 14 {% if is_current %}
gremmie@1 15 <h2>Photo Of The Day</h2>
gremmie@1 16 <h3>{% now "l, F d, Y" %}</h3>
bgneal@14 17 {% else %}
bgneal@14 18 <h2>Photo Of The Day Archives</h2>
bgneal@14 19 {% endif %}
bgneal@53 20 {% if potd %}
gremmie@1 21 <div class="potd-details">
gremmie@1 22 <img src="{{ potd.photo.url }}" alt="{{ potd.caption }}" title="{{ potd.caption }}" />
gremmie@1 23 <p class="caption">{{ potd.caption }}</p>
gremmie@1 24 <p class="details">
gremmie@1 25 Submitted by
gremmie@1 26 <a href="{% url bio-view_profile username=potd.user.username %}">{{ potd.user.username }}</a>
gremmie@1 27 on {{ potd.date_added|date:"d F Y" }}.<br />
gremmie@1 28 This photo has been Photo of the Day {{ potd.potd_count }} time{{ potd.potd_count|pluralize }}.
gremmie@1 29 </p>
gremmie@1 30 <p class="description">{{ potd.description }}</p>
gremmie@1 31 <p class="details">
gremmie@1 32 If you would like us to feature your photo, send it along with your username, a title, and
gremmie@1 33 short description to <a href="mailto:admin@surfguitar101.com">admin@surfguitar101.com</a>.
gremmie@1 34 </p>
gremmie@1 35 {% get_comment_count for potd as comment_count %}
gremmie@1 36 <p>This photo has <span id="comment-count">{{ comment_count }}</span> comment{{ comment_count|pluralize }}.</p>
gremmie@1 37 <hr />
gremmie@1 38 </div>
gremmie@1 39 {% render_comment_list potd %}
gremmie@1 40 {% if potd.can_comment_on %}
gremmie@1 41 <p>Leave a comment?</p>
gremmie@1 42 {% render_comment_form for potd %}
bgneal@6 43 <br />
gremmie@1 44 {% else %}
gremmie@1 45 <p>Comments are allowed only on today's photo of the day. If you'd like to share your thoughts on this photo
gremmie@1 46 with the site staff, you can <a href="{% url contact-form %}">contact us directly</a>.</p>
gremmie@1 47 {% endif %}
gremmie@1 48 {% else %}
gremmie@1 49 <p>We're sorry, there doesn't seem to be a photo of the day right now.</p>
gremmie@1 50 {% endif %}
gremmie@1 51 {% endblock %}