{% extends "base.html" %} {% load i18n static wagtailcore_tags wagtailimages_tags %} {% block extra_css %} {% endblock %} {% block body_class %}template-activitypage{% endblock %} {% block content %}

{{ page.title }}

{% blocktrans %}By{% endblocktrans %}
    {% for organizer in page.organizers.all %}
  • {{ organizer.name }}
  • {% endfor %}
{% if page.description %}

{{ page.description }}

{% endif %} {% if page.program %}

{% blocktrans %}Program{% endblocktrans %}

{{ page.program|richtext }}

{% endif %}

{% blocktrans %}When{% endblocktrans %}

{% blocktrans %}Where{% endblocktrans %}

{{ page.location.name }}

{% if page.location.description %}

{{ page.location.description }}

{% endif %} {% if page.location.has_address %}
{{ page.location.street_name }}, {{ page.location.street_number }}
{{ page.location.zip_code }} {{ page.location.city }}
{% blocktrans %}Floor{% endblocktrans %} {{ page.location.floor }}
{% endif %} {% if page.location.OSM_url %} {% endif %} {% if page.location.public_transport_stops %}

{% blocktrans %}Pulic transport stops{% endblocktrans %}

    {% for stop in page.public_transport_stops %}
  • stop.line_number stop.name stop.type
  • {% endfor %}
{% endif %}
{% endblock %}