{% extends "base.html" %} {% load i18n %} {% block page-title %} {% if booking and booking.id %} {% include "booking_star.html" %} {% trans "Booking" %} {{ booking.id }}: {{ booking.get_title }} {% else %} {{ date }}, {{ page_title }} {% endif %} {% endblock %} {% block sub-navigation %} {% endblock %} {% block content %}
{% csrf_token %}

{% trans "Booking history" %}

{% include "booking_history_heading.html" %} {% for history in histories %} {% include "booking_history_row.html" %} {% empty %} {% endfor %}
{% trans "No entries found" %}
{% endblock %}