Mercurial > public > madeira
view mysite/templates/band/video_detail.html @ 5:e602b5302b94
Added support for countries beside the USA.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 14 May 2009 00:31:39 +0000 |
parents | 0dcfcdf50c62 |
children | ead7bd49c9e0 |
line wrap: on
line source
{% extends 'band/base.html' %} {% block title %}The Madeira | Videos: {{ vidset.title }}{% endblock %} {% block content %} <h1>Madeira Videos: {{ vidset.title }}</h1> {{ vidset.text|safe|linebreaks }} <div align="center"> <table cellspacing="3" cellpadding="2" border="0"> {% for video in vidset.video_set.all %} <tr><th>{{ video.title }}</th><td>{{ video.embed_code|safe }}</td></tr> {% endfor %} </table> </div> <br /> <center><a href="{% url mysite.band.views.videos_index %}">Videos index</a></center> {% endblock %}