view bns_website/templates/bands/band_list.html @ 8:92537b487942

Saving initial band data as a fixture.
author Brian Neal <bgneal@gmail.com>
date Sat, 29 Oct 2011 21:07:53 -0500
parents aee309dab2f1
children f2cb9b2ec552
line wrap: on
line source
{% extends 'base.html' %}
{% load core_tags %}
{% block title %}Bands{% endblock %}
{% block content %}
{% navbar 'bands' %}
<h1>Bands</h1>
<p>This is too &quot;wall of text-y&quot;, so maybe break it up with band photos. And/or put a javascript slideshow of all the bands up here at the top.</p>
<dl>
{% for band in object_list %}
<dt><a href="{{ band.url }}">{{ band.name }}</a></dt>
<dd>{{ band.notes|linebreaksbr }}</dd>
{% endfor %}
</dl>
{% endblock %}