{% extends 'pruefplan/tableBase.html' %} {% block title %}Prüfungsplan - Ansicht Prüfungen{% endblock %} {% block additionalScript %} {% endblock %} {% block table %}

Prüfungsplan - Ansicht Prüfungen

{% for ex in exams %} {% endfor %}
Datum Wochentag Fachkennung Fächer Fächerbezeichnung Teilprüfung Aufsichtsperson
{{ ex.date|date:"d.m.Y" }} {{ ex.time|date:"H:i" }} {{ ex.weekday }} {% for partialExam in ex.partialexam_set.all %} {% for subject in partialExam.subjectIds.all %} {{ subject.initials }}
{% endfor %} {% endfor %}
{% for partialExam in ex.partialexam_set.all %} {{ partialExam.identification }}
{% endfor %}
{% for partialExam in ex.partialexam_set.all %} {% for subject in partialExam.subjectIds.all %} {{ subject.name }}
{% endfor %} {% endfor %}
{% for partialExam in ex.partialexam_set.all %} {% for subject in partialExam.subjectIds.all %} {{ subject.identification }}
{% endfor %} {% endfor %}
{% for supervisor in supervisorSetDict|get_item:ex.identification %} {{ supervisor }}
{% endfor %}
{% endblock %}