view mysite/templates/band/videos.html @ 88:7245c769e31e django1.3

Close this branch. I'm not sure if I merged it correctly to the default branch, because the graphlog doesn't look right. But the changes were made to default somehow. So closing this off to prevent future confusion.
author Brian Neal <bgneal@gmail.com>
date Sat, 13 Apr 2013 18:08:19 -0500
parents ead7bd49c9e0
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 %}