{% include 'partials/header.html' %} {% load material_form %} {% block content %} Anträge prüfen {% for booking in filter.qs %} {% csrf_token %} {% if booking.status < 2 %} {{ booking.contact }} {{ booking.description }} {{ booking.planned_amount }} {{ form.account }} check_circle {% endif %} {% if booking.status < 3 %} not_interested {% endif %} {% endfor %} {% endblock %} {% include 'partials/footer.html' %}