Mercurial > public > madeira
comparison mysite/templates/band/videos.html @ 40:25e00d1b99bf
Get rid of the project name 'mysite' from the source.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 14 Feb 2012 19:09:57 -0600 |
parents | efb2da0b5d10 |
children |
comparison
equal
deleted
inserted
replaced
39:b8e166ca993a | 40:25e00d1b99bf |
---|---|
4 {% block content %} | 4 {% block content %} |
5 <h1>Madeira Videos</h1> | 5 <h1>Madeira Videos</h1> |
6 {% if vidsets %} | 6 {% if vidsets %} |
7 <ul> | 7 <ul> |
8 {% for set in vidsets %} | 8 {% for set in vidsets %} |
9 <li><a href="{% url 'mysite.band.views.video_detail' set.id %}">{{ set.title }}</a></li> | 9 <li><a href="{% url 'band.views.video_detail' set.id %}">{{ set.title }}</a></li> |
10 {% endfor %} | 10 {% endfor %} |
11 </ul> | 11 </ul> |
12 {% else %} | 12 {% else %} |
13 No videos available at this time. | 13 No videos available at this time. |
14 {% endif %} | 14 {% endif %} |