{% extends 'templates/default.php' %} {% block title %}Show Schedule{% endblock %} {% block content %}

Upcoming Tour Dates

{% for show in shows %} {% endfor %}

{{ show.date }}

{{ show.day }}

{{ show.time }}

{{ show.venue.name }}

{% if shows.artists.length > 1 %} w/ {% for artist in show.artists %} {% if not artist.name == 'HALFtone' %} {{ artist.name }} {% endif %} {% endfor %} {% else %} {{ show.description[:60] }} {% endif %}

{{ show.venue.city }}, {{ show.venue.region }}

{% if show.ticket_url %}

Tickets

{% endif %}

RSVP

{% endblock %}