{% extends "base.html" %} {% load i18n %} {% load static %} {% load juntagrico.common %} {% load juntagrico.config %} {% block styles %} {% endblock %} {% block page_title %}

{% vocabulary "depot" %} {{ depot.name }}

{% endblock %} {% block content %} {% block address %}
{% trans "Adresse" %}
{{ depot.location.address_html|safe }}
{% endblock %} {% block pickup %}
{% trans "Abholung" %}
{{ depot.pickup_display }}
{% endblock %} {% block contact %}
{% trans "Kontaktperson" %}
{{ depot.contact.first_name }} {{ depot.contact.last_name }} {{ depot.contact.email }}
{% endblock %} {% block description %} {% if depot.description %}
{% trans "Beschreibung" %}
{{ depot.location.description|richtext|safe }} {{ depot.description|richtext|safe }}
{% endif %} {% endblock %} {% block access_information %} {% if depot.access_information and show_access %}
{% trans "Zugangsbeschreibung" %}
{{ depot.access_information|richtext|safe }}
{% endif %} {% endblock %} {% block map %}
{% endblock %} {% endblock %} {% block scripts %} {{ depot.map_info|json_script:'depot_data' }} {% include 'snippets/scripts/leaflet.html' %} {% endblock %}