Mercurial > public > madeira
comparison mysite/templates/band/photos.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 |
comparison
equal
deleted
inserted
replaced
39:b8e166ca993a | 40:25e00d1b99bf |
---|---|
16 {% block content %} | 16 {% block content %} |
17 <h1>Madeira Photo Galleries</h1> | 17 <h1>Madeira Photo Galleries</h1> |
18 {% if galleries %} | 18 {% if galleries %} |
19 <ul> | 19 <ul> |
20 {% for gallery in galleries %} | 20 {% for gallery in galleries %} |
21 <li><a href="{% url 'mysite.band.views.photo_detail' gallery.id %}">{{ gallery.title }}</a></li> | 21 <li><a href="{% url 'band.views.photo_detail' gallery.id %}">{{ gallery.title }}</a></li> |
22 {% endfor %} | 22 {% endfor %} |
23 </ul> | 23 </ul> |
24 {% else %} | 24 {% else %} |
25 No photo galleries available at this time. | 25 No photo galleries available at this time. |
26 {% endif %} | 26 {% endif %} |