{% extends "eventcalendar/base.html" %} {% load i18n staticfiles %} {% block body %}
{% trans   {% trans

{{event.title}}

{% if event.description %}

{% trans "Description" %}

{{event.description}}

{% endif %}

Category

{{ event.category }}

{% if event.venue %}

Location

{{ event.venue }}

{% elif event.raw_location %}

Location

{{ event.raw_location }}

{% endif %}

Age range

{{ event.age_range }}

{% if event.more_info_url %}

More Information

{% endif %} {% if event.ticket_url %}

Ticket Information

{% endif %} {% if event.price_info.keys %}

Pricing information

{% endif %} {% endblock %}