{% extends "portal/detail_base.html" %} {% load maps %} {% load search_results %} {% block detail_hint %} Try exploring further by clicking on a supporting band or on a venue to find out more. {% endblock %} {% block content %}

Gig Details

Gig name: {{gig}} {% comment %} Where can this go?

start time: {{gig.start|date:"l, M j, Y"}}

{% endcomment %}
{% for band in gig.get_headlining_bands %} {% if forloop.first %}
Headlining band
{% endif %} {% include "portal/basic_band_info.html" %} {% endfor %} {% for band in gig.get_non_headlining_bands %}
{% if forloop.first %}
Other bands
{% endif %} {% include "portal/basic_band_info.html" %}
{% endfor %}

Download this gig listing as a CSV file.

{% endblock %} {% block right-bar %}
Venue details
{% if gig.venue %} {% with gig.venue as venue %} {% include "portal/basic_venue_info.html" %} {% endwith %} {% if gig|has_locations %}

GIG MAP

{% map gig %}
{% endif %} {% else %}

No Venue listed for this gig

{% endif %}
{% endblock %}