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

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

{% endblock %} {% block content %}
{% trans "Adresse" %}
{{ depot.addr_street }}
{{ depot.addr_zipcode }} {{ depot.addr_location }}
{% 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.description|linebreaksbr|urlize }}
{% endif %}
{% if requires_map %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}