comparison mysite/templates/band/gigs.html @ 21:f3052378ab47

Updating the home page with a 6 video playlist from Mahogany's. Fixed the flyers on the gig page under chrome. Updated the copyright on the base template.
author Brian Neal <bgneal@gmail.com>
date Sun, 20 Mar 2011 19:53:35 +0000
parents 1b6b3e38e918
children ead7bd49c9e0
comparison
equal deleted inserted replaced
20:7aa63299adf6 21:f3052378ab47
86 <br clear="all" /> 86 <br clear="all" />
87 87
88 {% if flyerGigs %} 88 {% if flyerGigs %}
89 <div class="thumb-box"> 89 <div class="thumb-box">
90 <h2>Flyers</h2> 90 <h2>Flyers</h2>
91 <center> 91 <div style="width:90%; margin-left:auto;">
92 {% for gig in flyerGigs %} 92 {% for gig in flyerGigs %}
93 <div style="display:inline-table;">
93 <table class="image-table"> 94 <table class="image-table">
94 <caption>{{ gig.venue.name}}, {{ gig.date|date:"F 'y" }}</caption> 95 <caption>{{ gig.venue.name}}, {{ gig.date|date:"F 'y" }}</caption>
95 <tr><td> 96 <tr><td>
96 <a href="{{ gig.flyer.image.url }}" class="fancybox" rel="madeira-gallery"> 97 <a href="{{ gig.flyer.image.url }}" class="fancybox" rel="madeira-gallery">
97 <img src="{{ gig.flyer.get_thumbnail_url }}" alt="{{ gig.date|date:"F d, Y" }}" title="{{ gig.date|date:"F d, Y" }}" /></a> 98 <img src="{{ gig.flyer.get_thumbnail_url }}" alt="{{ gig.date|date:"F d, Y" }}" title="{{ gig.date|date:"F d, Y" }}" /></a>
98 </td></tr> 99 </td></tr>
99 </table> 100 </table>
101 </div>
100 {% endfor %} 102 {% endfor %}
101 </center> 103 </div>
102 <div clear="all"></div> 104 <div clear="all"></div>
103 <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> 105 <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>
104 </div> 106 </div>
105 {% endif %} 107 {% endif %}
106 108