{% comment %}
Display a single Event, probably in a list.
Expects:
* event - A child of the Event model.
{% endcomment %}
{% if event.kind == 'movie' %}
{{ event.movie.title }}
{% if event.movie.year %}
({{ event.movie.year }})
{% endif %}
{% else %}
{{ event }}
{% endif %}
{% load spectator_core %}
{% current_url_name as url_name %}
{% if url_name == 'spectator:venue_detail' %}
{{ event.venue.name }},
{% else %}
{{ event.venue.name }},
{% endif %}
{{ event.date|date:"j M Y" }}