comparison mysite/templates/band/gigs.html @ 12:d771b81e927e

Incorporate blueprints css into the site design.
author Brian Neal <bgneal@gmail.com>
date Tue, 11 May 2010 23:18:32 +0000
parents e602b5302b94
children 10be1f4f121b
comparison
equal deleted inserted replaced
11:89978c135246 12:d771b81e927e
14 {% if upcoming %} 14 {% if upcoming %}
15 {% for show in upcoming %} 15 {% for show in upcoming %}
16 <p style="clear:both"> 16 <p style="clear:both">
17 {% if show.flyer %} 17 {% if show.flyer %}
18 <a href="{{ show.flyer.image.url }}" class="thickbox" rel="madeira-gallery"> 18 <a href="{{ show.flyer.image.url }}" class="thickbox" rel="madeira-gallery">
19 <img style="float:left; margin-right:5px; margin-bottom:1em" src="{{ show.flyer.get_thumbnail_url }}" 19 <!-- <img style="float:left; margin-right:5px; margin-bottom:1em" src="{{ show.flyer.get_thumbnail_url }}" -->
20 <img class="left" src="{{ show.flyer.get_thumbnail_url }}"
20 alt="{{ show.flyer.caption }}" title="{{ show.flyer.caption }}" /></a> 21 alt="{{ show.flyer.caption }}" title="{{ show.flyer.caption }}" /></a>
21 {% endif %} 22 {% endif %}
22 <strong>{{ show.date|date:"F d, Y" }}</strong> 23 <strong>{{ show.date|date:"F d, Y" }}</strong>
23 {% if show.time %}{{ show.time|time:"h:i A" }}{% endif %}<br /> 24 {% if show.time %}{{ show.time|time:"h:i A" }}{% endif %}<br />
24 25
80 <br clear="all" /> 81 <br clear="all" />
81 82
82 {% if flyerGigs %} 83 {% if flyerGigs %}
83 <div class="thumb-box"> 84 <div class="thumb-box">
84 <h2>Flyers</h2> 85 <h2>Flyers</h2>
85 <table align="center" border="0"> 86 <center>
86 <tr><td>
87 {% for gig in flyerGigs %} 87 {% for gig in flyerGigs %}
88 <table class="image-table"> 88 <table class="image-table">
89 <caption>{{ gig.venue.name}}, {{ gig.date|date:"F 'y" }}</caption> 89 <caption>{{ gig.venue.name}}, {{ gig.date|date:"F 'y" }}</caption>
90 <tr><td> 90 <tr><td>
91 <a href="{{ gig.flyer.image.url }}" class="thickbox" rel="madeira-gallery"> 91 <a href="{{ gig.flyer.image.url }}" class="thickbox" rel="madeira-gallery">
92 <img src="{{ gig.flyer.get_thumbnail_url }}" alt="{{ gig.date|date:"F d, Y" }}" title="{{ gig.date|date:"F d, Y" }}" /></a> 92 <img src="{{ gig.flyer.get_thumbnail_url }}" alt="{{ gig.date|date:"F d, Y" }}" title="{{ gig.date|date:"F d, Y" }}" /></a>
93 </td></tr> 93 </td></tr>
94 </table> 94 </table>
95 {% endfor %} 95 {% endfor %}
96 </td></tr> 96 </center>
97 </table>
98 <div clear="all"></div> 97 <div clear="all"></div>
99 <center><p>To see all our flyers in full size, check out our <a href="{% url band.views.flyers %}">show flyer gallery</a>.</p></center> 98 <center><p>To see all our flyers in full size, check out our <a href="{% url band.views.flyers %}">show flyer gallery</a>.</p></center>
100 </div> 99 </div>
101 {% endif %} 100 {% endif %}
102 101