Mercurial > public > madeira
annotate mysite/templates/band/videos.html @ 88:7245c769e31e django1.3
Close this branch. I'm not sure if I merged it correctly to the
default branch, because the graphlog doesn't look right. But the
changes were made to default somehow. So closing this off to prevent
future confusion.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 13 Apr 2013 18:08:19 -0500 |
parents | ead7bd49c9e0 |
children | 25e00d1b99bf |
rev | line source |
---|---|
bgneal@1 | 1 {% extends 'band/base.html' %} |
bgneal@24 | 2 {% load url from future %} |
bgneal@1 | 3 {% block title %}The Madeira | Videos{% endblock %} |
bgneal@1 | 4 {% block content %} |
bgneal@1 | 5 <h1>Madeira Videos</h1> |
bgneal@1 | 6 {% if vidsets %} |
bgneal@1 | 7 <ul> |
bgneal@1 | 8 {% for set in vidsets %} |
bgneal@24 | 9 <li><a href="{% url 'mysite.band.views.video_detail' set.id %}">{{ set.title }}</a></li> |
bgneal@1 | 10 {% endfor %} |
bgneal@1 | 11 </ul> |
bgneal@1 | 12 {% else %} |
bgneal@1 | 13 No videos available at this time. |
bgneal@1 | 14 {% endif %} |
bgneal@1 | 15 {% endblock %} |