view mysite/templates/band/videos.html @ 11:89978c135246

Added MySpace and Facebook links to sidebar.
author Brian Neal <bgneal@gmail.com>
date Sun, 02 May 2010 18:21:38 +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 %}