bgneal@1: {% extends 'band/base.html' %} bgneal@1: {% block title %}The Madeira | Shows{% endblock %} bgneal@1: {% block custom_css %} bgneal@1: bgneal@1: {% endblock %} bgneal@1: {% block custom_js %} bgneal@1: bgneal@1: bgneal@1: {% endblock %} bgneal@1: {% block content %} bgneal@1:
bgneal@1: {% if show.flyer %}
bgneal@1:
bgneal@12:
bgneal@12:
bgneal@1: {% endif %}
bgneal@1: {{ show.date|date:"F d, Y" }}
bgneal@1: {% if show.time %}{{ show.time|time:"h:i A" }}{% endif %}
bgneal@1:
bgneal@1: {% if show.title and show.url %}
bgneal@1: {{ show.title }}
bgneal@1: {% else %}
bgneal@1: {% if show.title %}
bgneal@1: {{ show.title }}
bgneal@1: {% endif %}
bgneal@1: {% endif %}
bgneal@1:
bgneal@1: {% if show.venue %}
bgneal@1: {% if show.venue.url %}
bgneal@1: {{ show.venue.name }},
bgneal@1: {% else %}
bgneal@1: {{ show.venue }},
bgneal@1: {% endif %}
bgneal@1: {% if show.venue.address %}
bgneal@1: {{ show.venue.address }},
bgneal@1: {% endif %}
bgneal@1: {% if show.venue.city.state %}
bgneal@1: {{ show.venue.city.name }}, {{ show.venue.city.state.name }}
bgneal@1: {% else %}
bgneal@1: {{ show.venue.city.name }}
bgneal@1: {% endif %}
bgneal@5: {% ifnotequal show.venue.city.country.name "USA" %}
bgneal@5: {{ show.venue.city.country.name }}
bgneal@5: {% endifnotequal %}
bgneal@1:
bgneal@1: {% if show.venue.phone %}
bgneal@1: {{ show.venue.phone }}
bgneal@1:
bgneal@1: {% endif %}
bgneal@1: {% endif %}
bgneal@1:
bgneal@1: {% if show.bands.all %}
bgneal@1: With:
bgneal@1: {% for band in show.bands.all %}
bgneal@1: {% if band.url %}
bgneal@1: {{ band.name }}
bgneal@1: {% else %}
bgneal@1: {{ band.name }}
bgneal@1: {% endif %}
bgneal@1: {% if not forloop.last %}
bgneal@1: •
bgneal@1: {% endif %}
bgneal@1: {% endfor %}
bgneal@1:
bgneal@1: {% endif %}
bgneal@1:
bgneal@1: {% if show.notes %}
bgneal@1: {{ show.notes|safe }}
bgneal@1: {% endif %}
bgneal@1:
bgneal@1: bgneal@1: bgneal@1: |
To see all our flyers in full size, check out our show flyer gallery.
Date | Venue | Bands |
---|---|---|
{{ show.date|date:"M d, Y" }} | bgneal@1:bgneal@1: {% if show.title and show.url %} bgneal@1: {{ show.title }}, bgneal@1: {% else %} bgneal@1: {% if show.title %} bgneal@1: {{ show.title }}, bgneal@1: {% endif %} bgneal@1: {% endif %} bgneal@1: {% if show.venue.url %} bgneal@1: {{ show.venue.name }}, bgneal@1: {% else %} bgneal@1: {{ show.venue.name }}, bgneal@1: {% endif %} bgneal@1: {{ show.venue.city.name }}, {{ show.venue.city.state.abbrev }} bgneal@5: {% ifnotequal show.venue.city.country.name "USA" %} bgneal@5: {{ show.venue.city.country.name }} bgneal@5: {% endifnotequal %} bgneal@1: | bgneal@1:bgneal@1: {% for band in show.bands.all %} bgneal@1: {% if band.url %} bgneal@1: {{ band.name }} bgneal@1: {% else %} bgneal@1: {{ band.name }} bgneal@1: {% endif %} bgneal@1: {% if not forloop.last %} bgneal@1: • bgneal@1: {% endif %} bgneal@1: {% endfor %} bgneal@1: | bgneal@1:
Number of shows: | {{ stats.count }} |
---|---|
Number of unique venues: | {{ stats.venues }} |
Number of unique cities: | {{ stats.cities }} |
Number of unique states: | {{ stats.states }} |
Number of unique countries: | {{ stats.countries }} |
Number of unique bands: | {{ stats.bands }} |