mirror of
https://github.com/nelsbrock/NateMan.git
synced 2026-08-14 21:36:49 +02:00
117 lines
3.7 KiB
Django/Jinja
117 lines
3.7 KiB
Django/Jinja
{#
|
||
NateMan – Nachschreibtermin-Manager
|
||
templates/klausuren/stufe.html.j2
|
||
Copyright © 2020 Niklas Elsbrock
|
||
|
||
This program is free software: you can redistribute it and/or modify
|
||
it under the terms of the GNU General Public License as published by
|
||
the Free Software Foundation, either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU General Public License for more details.
|
||
|
||
You should have received a copy of the GNU General Public License
|
||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
-#}
|
||
|
||
{% extends 'base.html.j2' %}
|
||
|
||
{% block title %}Klausuren {{ stufe.name }}{% endblock %}
|
||
{% block header %}Klausuren {{ stufe.name }}{% endblock %}
|
||
|
||
{# stufe #}
|
||
{# dates_anstehend #}
|
||
{# dates_vergangen #}
|
||
{% set lehrer_can_access = g.lehrer is not none and g.lehrer.can_access(stufe) %}
|
||
{% set klausur_count = dates_anstehend | length + dates_vergangen | length %}
|
||
{% set beratungslehrer_list = Lehrer.query.filter_by(beraet=stufe).all() %}
|
||
|
||
{% block content %}
|
||
|
||
<p class="description">
|
||
Beratungslehrkräfte:
|
||
{% if beratungslehrer_list|length == 0 %}
|
||
keine
|
||
{% else %}
|
||
{% for l in beratungslehrer_list %}
|
||
{{ l.kuerzel }}{% if l.email is not none %} <<a href="mailto:{{ l.email }}">{{ l.email }}</a>>{% endif %}<!--
|
||
-->{% if not loop.last %},{% endif %}
|
||
{% endfor %}
|
||
{% endif %}
|
||
</p>
|
||
|
||
{% if lehrer_can_access %}
|
||
<p><a href="{{ url_for('klausuren.add', stufe_name=stufe.name) }}" data-icon="">Klausur hinzufügen</a></p>
|
||
{% endif %}
|
||
|
||
{% if klausur_count != 0 %}
|
||
<p><a href="#heute" data-icon="">zu heute springen</a></p>
|
||
{% endif %}
|
||
|
||
{% if klausur_count == 0 %}
|
||
<p>keine</p>
|
||
{% else %}
|
||
{% for dates_list in (dates_anstehend, dates_vergangen) %}
|
||
{% if loop.index0 == 1 %}
|
||
<div id="heute" class="labeled-hr" data-icon="">heute ({{ macros.date(datetime.now()) }})</div>
|
||
{% endif %}
|
||
|
||
{% for date in dates_list %}
|
||
{%
|
||
set date_klausur_list = Klausur.query.filter_by(stufe=stufe, date=date)
|
||
.order_by(Klausur.startperiod, Klausur.endperiod, Klausur.kursname).all()
|
||
%}
|
||
{% set date_iso = date.strftime('%Y-%m-%d') %}
|
||
|
||
<h3>
|
||
<span>
|
||
{{ macros.date(date) }}:
|
||
<a class="scroll-anchor" name="{{ date_iso }}" href="#{{ date_iso }}"></a>
|
||
</span>
|
||
</h3>
|
||
|
||
<table>
|
||
<thead>
|
||
<tr>
|
||
<th>Lehrkraft</th>
|
||
<th>Kurs</th>
|
||
<th>Zeitraum</th>
|
||
{% if lehrer_can_access %}
|
||
<th>bearbeitet</th>
|
||
<th>Bemerkung</th>
|
||
{% endif %}
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
{% for k in date_klausur_list %}
|
||
<tr {% if lehrer_can_access %} class="clickable" tabindex="0"
|
||
data-href="{{ url_for('klausuren.edit', klausur_id=k.id) }}" {% endif %}>
|
||
<td>{{ k.lehrer.kuerzel }}</td>
|
||
<td>{{ k.kursname }}</td>
|
||
<td>{{ macros.zeitraum(k) }} Std.</td>
|
||
{% if lehrer_can_access %}
|
||
{% if k.edited %}
|
||
<td class="positive-status">ja</td>
|
||
{% else %}
|
||
<td class="negative-status">nein</td>
|
||
{% endif %}
|
||
|
||
{% if k.annotation is not none %}
|
||
<td class="description">{{ k.annotation }}</td>
|
||
{% else %}
|
||
<td class="detail">keine</td>
|
||
{% endif %}
|
||
{% endif %}
|
||
</tr>
|
||
{% endfor %}
|
||
</tbody>
|
||
</table>
|
||
{% endfor %}
|
||
{% endfor %}
|
||
{% endif %}
|
||
|
||
{% endblock %}
|