comparison mysite/templates/band/videos.html @ 1:0dcfcdf50c62

Initial import of Madeira project from the private repository.
author Brian Neal <bgneal@gmail.com>
date Mon, 06 Apr 2009 03:10:59 +0000
parents
children ead7bd49c9e0
comparison
equal deleted inserted replaced
0:df0370bfe3f0 1:0dcfcdf50c62
1 {% extends 'band/base.html' %}
2 {% block title %}The Madeira | Videos{% endblock %}
3 {% block content %}
4 <h1>Madeira Videos</h1>
5 {% if vidsets %}
6 <ul>
7 {% for set in vidsets %}
8 <li><a href="{% url mysite.band.views.video_detail set.id %}">{{ set.title }}</a></li>
9 {% endfor %}
10 </ul>
11 {% else %}
12 No videos available at this time.
13 {% endif %}
14 {% endblock %}