{% extends 'base.html' %} {% load static %} {% block title %}Nachweis-Board – Stiftungsverwaltung{% endblock %} {% block content %}
| Destinatär | Q1 (Jan–Mär) | Q2 (Apr–Jun) | Q3 (Jul–Sep) | Q4 (Okt–Dez) | Gesamt |
|---|---|---|---|---|---|
| {{ row.destinataer.get_full_name }} | {% for q in "1234" %} {% with nachweis=row.quartale|get_item:q|default:None %}{% if nachweis %} {% if nachweis.status == 'geprueft' or nachweis.status == 'auto_geprueft' %} {% elif nachweis.status == 'eingereicht' %} {% elif nachweis.status == 'teilweise' %} {% elif nachweis.status == 'nachbesserung' %} {% elif nachweis.status == 'abgelehnt' %} {% elif nachweis.is_overdue %} {% else %} {% endif %} {% else %} – {% endif %} | {% endwith %} {% endfor %}{% with total=0 done=0 %} {% for q, nachweis in row.quartale.items %} {% if nachweis %} {% if nachweis.status == 'geprueft' or nachweis.status == 'auto_geprueft' %} {% endif %} {% endif %} {% endfor %} {% endwith %} |