annotate gpp/templates/podcast/detail.html @ 197:2baadae33f2e

Got autocomplete working for the member search. Updated django and ran into a bug where url tags with comma separated kwargs starting consuming tons of CPU throughput. The work-around is to cut over to using spaces between arguments. This is now allowed to be consistent with other tags. Did some query optimization for the news app.
author Brian Neal <bgneal@gmail.com>
date Sat, 10 Apr 2010 04:32:24 +0000
parents 1ed461fd2030
children 7fdfc9b3c71a
rev   line source
gremmie@1 1 {% extends 'podcast/base.html' %}
gremmie@1 2 {% block title %}Podcast: {{ podcast.title }}{% endblock %}
gremmie@1 3 {% block podcast-content %}
gremmie@1 4 <div class="breadcrumb">
gremmie@1 5 <a href="{% url podcast.views.index %}">Podcast Index</a> &gt;&gt; {{ podcast.title }}
gremmie@1 6 </div>
gremmie@1 7 <h3>{{ podcast.pubdate|date:"F d, Y" }} &bull; {{ podcast.title }}</h3>
gremmie@1 8 <h4>{{ podcast.subtitle }}</h4>
gremmie@1 9 {{ podcast.summary|linebreaks }}
bgneal@143 10 <ul>
bgneal@143 11 <li>
bgneal@143 12 <a href="{{ podcast.enclosure_url }}">Download Now ({{ ext }})</a> &bull;
bgneal@143 13 {{ podcast.enclosure_length|filesizeformat }} &bull; {{ podcast.duration }}
bgneal@143 14 </li>
bgneal@143 15 {% if alt_ext %}
bgneal@143 16 <li>
bgneal@143 17 <a href="{{ podcast.alt_enclosure_url }}">Download Now ({{ alt_ext }})</a>
bgneal@143 18 </li>
bgneal@143 19 {% endif %}
bgneal@143 20 </ul>
gremmie@1 21 {% endblock %}