This commit is contained in:
relikd
2023-05-29 15:20:07 +02:00
commit 1380b156d8
126 changed files with 3612 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
{% extends 'generic/list.html' %}
{% load tabular_list %}
{% block content %}
{% if open_bookings %}
<h2>Offene {{ title }}</h2>
{% tabular_list objects=open_bookings views=views columns=list_columns render_options=list_render %}
<h2>Alle {{ title }}</h2>
{% endif %}
{{ block.super }}
{% endblock content %}