{% extends "feeds/events/base.html" %}{% load molly_maps %} {% load i18n %}{% load molly_utils %} {% block breadcrumbs %} {{ block.super }}
  • {% trans "Events" %}
  • {% endblock %} {% block pagetitle %}{% trans "Event" %}{% endblock %} {# Significant whitespace on line below #} {% block title %}{% trans "Event" %}: {{ item.title }}{% endblock %} {% block content %}

    {{ item.title }}

    {% if description %} {{ description|safe|urlize|linebreaksbr }}

    {% endif %} {% if item.dt_start %} {% trans "Starts:" %} {% if item.dt_start|date:"H:i" != "00:00" %} {{item.dt_start|date:"l j M Y \a\t H:i"}}
    {% else %} {{item.dt_start|date:"l j M Y"}}
    {% endif %} {% endif %} {% if item.dt_end %} {% trans "Ends:" %} {% if item.dt_end|date:"H:i" != "00:00" %} {{item.dt_end|date:"l j M Y \a\t H:i"}}
    {% else %} {{item.dt_end|date:"l j M Y"}}
    {% endif %} {% endif %} {# Do not display the "last modified" date if we have dt_start #} {% if not item.dt_start %} {{ item.last_modified_local|date:"j M Y \a\t H:i" }}
    {% endif %} {# Significant whitespace on line below #} {% if item.link %} {% trans "Link:" %} {{ item.link }} {% endif %}
    {% if item.venue %}

    {{ item.venue.name }}

    {% if item.venue.address %}

    {{ item.venue.address }}

    {% endif %} {% if item.venue.location %} {% render_location_map item.venue.location %} {% endif %}
    {% endif %} {% endblock %}