view mysite/templates/band/songs.html @ 28:a404f93a68d3

Decrease by 2 orders of magnitude the number of queries needed to generate the gigs page for the Madeira.
author Brian Neal <bgneal@gmail.com>
date Thu, 31 Mar 2011 00:14:34 +0000
parents 0dcfcdf50c62
children
line wrap: on
line source
{% extends 'band/base.html' %}
{% block title %}The Madeira | Songs{% endblock %}
{% block content %}
<h1>Madeira Songs</h1>
{% if mp3Sets %}
   <p>Check out some Madeira MP3 downloads!</p>
   {% for set in mp3Sets %}
      <h2>{{ set.title }}</h2>
      {{ set.text|safe|linebreaks }}
      <ul>
         {% for mp3 in set.mp3_set.all %}
            <li><a href="{{ mp3.file.url }}">{{ mp3.title }}</a>
               ({{ mp3.file.size|filesizeformat }}){% if mp3.desc %} - {{ mp3.desc }}{% endif %}</li>
         {% endfor %}
      </ul>
   {% endfor %}
{% else %}
No downloads available at this time.
{% endif %}
{% endblock %}