{% extends "base.html" %} {% load i18n markup %} {% block page_name %}{% trans venue.name %}{% endblock %} {% block extrahead %}{{block.super}} {% endblock %}
{% block sub_nav_links %}
  • {% trans "Back to Venues List" %}
  • {% if venue.country %}
  • {% trans "Edit Venue Details" %}
  • {% else %}
  • {% trans "Edit Venue Details" %}
  • {% endif %} {% endblock %} {% block content %}

    {{ venue.name }}

    {% if venue.address %}{{ venue.address }}{% endif %} {% if venue.country %}{{ venue.country }}{% endif %} {% if venue.spr %}, {{ venue.spr }}{% endif %}{% if venue.city %}, {{ venue.city }}{% endif %}
    {% if venue.tz %}
    {{ venue.tz }}
    {% endif %} {% if venue.venue_url %} {% endif %}
    {% if venue.comment %}

    {% trans "Comment" %}

    {{ venue.comment|markdown:'safe' }}
    {% endif %}
    {% if venue.longitude and venue.latitude %}
    {% endif %}

    {% trans "Upcoming Events" %}

    {% if events %} {% for team_event in events %} {{ team_event.name }} {{ team_event.local_date_begin|date:"l, d N Y" }} {% trans "at " %}{{ team_event.local_date_begin|date:"H:i T" }}

    {{ team_event.description }}

    {% endfor %} {% else %}
    {% trans "There are currently no upcoming events on this venue" %}
    {% endif %}
    {% endblock %}