Mercurial > public > madeira
view mysite/templates/band/videos.html @ 32:fb72a1e65121
Add back the fancy box init code to allow fancybox to work on the index page.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 11 Aug 2011 19:00:32 +0000 |
parents | efb2da0b5d10 |
children | 25e00d1b99bf |
line wrap: on
line source
{% extends 'band/base.html' %} {% load url from future %} {% 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 %}