{% 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 %}
{% trans "Adresse" %}
{{ depot.location.address_html|safe }}
{% trans "Wochentag" %}
{{ depot.get_weekday_display }}
{% trans "Kontaktperson" %}
{{ depot.contact.first_name }} {{ depot.contact.last_name }} {{ depot.contact.email }}
{% if depot.description %}
{% trans "Beschreibung" %}
{{ depot.location.description|richtext|safe }} {{ depot.description|richtext|safe }}
{% endif %} {% if depot.access_information and show_access %}
{% trans "Zugangsbeschreibung" %}
{{ depot.access_information|richtext|safe }}
{% endif %}
{% endblock %} {% block scripts %} {{ depot.map_info|json_script:'depot_data' }} {% endblock %}