Mercurial > public > sg101
comparison gpp/templates/podcast/detail.html @ 310:daa2916f5b34
Fixing 145; New url tag behavior (forwards compatibility) in Django 1.3.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 20 Jan 2011 04:03:48 +0000 |
parents | 7fdfc9b3c71a |
children | 9175392da056 |
comparison
equal
deleted
inserted
replaced
309:8a0bae48b6ca | 310:daa2916f5b34 |
---|---|
1 {% extends 'podcast/base.html' %} | 1 {% extends 'podcast/base.html' %} |
2 {% load url from future %} | |
2 {% block title %}Podcast: {{ podcast.title }}{% endblock %} | 3 {% block title %}Podcast: {{ podcast.title }}{% endblock %} |
3 {% block podcast-content %} | 4 {% block podcast-content %} |
4 <div class="breadcrumbs"> | 5 <div class="breadcrumbs"> |
5 <a href="{% url podcast.views.index %}">Podcast Index</a> >> {{ podcast.title }} | 6 <a href="{% url 'podcast.views.index' %}">Podcast Index</a> >> {{ podcast.title }} |
6 </div> | 7 </div> |
7 <h3>{{ podcast.pubdate|date:"F d, Y" }} • {{ podcast.title }}</h3> | 8 <h3>{{ podcast.pubdate|date:"F d, Y" }} • {{ podcast.title }}</h3> |
8 <h4>{{ podcast.subtitle }}</h4> | 9 <h4>{{ podcast.subtitle }}</h4> |
9 {{ podcast.summary|linebreaks }} | 10 {{ podcast.summary|linebreaks }} |
10 <ul> | 11 <ul> |