view mysite/templates/band/video_detail.html @ 40:25e00d1b99bf

Get rid of the project name 'mysite' from the source.
author Brian Neal <bgneal@gmail.com>
date Tue, 14 Feb 2012 19:09:57 -0600
parents efb2da0b5d10
children
line wrap: on
line source
{% extends 'band/base.html' %}
{% load url from future %}
{% 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 'band.views.videos_index' %}">Videos index</a></center>

{% endblock %}