Mercurial > public > madeira
view mysite/templates/band/videos.html @ 15:1b449b67af27
Use newer version of jquery hosted on google.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 29 Aug 2010 18:45:23 +0000 |
parents | 0dcfcdf50c62 |
children | ead7bd49c9e0 |
line wrap: on
line source
{% extends 'band/base.html' %} {% block title %}The Madeira | Videos{% endblock %} {% block content %} <h1>Madeira Videos</h1> {% if vidsets %} <ul> {% for set in vidsets %} <li><a href="{% url mysite.band.views.video_detail set.id %}">{{ set.title }}</a></li> {% endfor %} </ul> {% else %} No videos available at this time. {% endif %} {% endblock %}