{% extends base %} {% load i18n %} {% block content_title %}{% blocktrans with object.description as desc %}Reservation: {{ desc }}{% endblocktrans %}{% endblock %} {% block content_navi %}
{% trans "Entire week" %}
{% endblock %} {% block content_body %}

{{ object.get_creator_name }}

{% if object.one_day %}

{{ object.start|date:"G:i" }}—{{ object.stop|date:"G:i" }}

{% else %}

{{ object.start }}—{{ object.stop }}

{% endif %}

{{ object.long_description|linebreaks }}

{% endblock %}