diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mysite/templates/band/videos.html	Mon Apr 06 03:10:59 2009 +0000
@@ -0,0 +1,14 @@
+{% 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 %}