{% include 'partials/header.html' %} {% load material_form %}
{% block content %}

Beantragungen von {{ user }}

{% csrf_token %} {% form form=form %} {% endform %}

Laufende Anträge

{% for booking in bookings %}
{{ booking.description }} {{ booking.planned_amount }} € {{ booking.getStatus.name }} {% if booking.status == 0 %}
{% csrf_token %}
{% endif %} {% if booking.status == 0 or booking.status == 1 %}
{% csrf_token %}
{% endif %}
{% csrf_token %} {% if booking.status == 1 %} {% elif booking.status == 3 %} {% endif %}
{% endfor %}
{% endblock %}
{% include 'partials/footer.html' %}