view mysite/templates/band/videos.html @ 20:7aa63299adf6

Adding a work around for IE path problem in the .css file, as per http://groups.google.com/group/fancybox/browse_frm/thread/8530478044b9f586
author Brian Neal <bgneal@gmail.com>
date Wed, 08 Sep 2010 23:15:57 +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 %}