mirror of
https://github.com/nelsbrock/NateMan.git
synced 2026-08-14 21:36:49 +02:00
216 lines
7.0 KiB
Django/Jinja
216 lines
7.0 KiB
Django/Jinja
{#
|
||
NateMan – Nachschreibtermin-Manager
|
||
templates/base.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/>.
|
||
-#}
|
||
|
||
{%- import 'macros.j2' as macros -%}
|
||
|
||
<!DOCTYPE html>
|
||
|
||
<!-- generiert aus Template-Code von Niklas Elsbrock -->
|
||
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="format-detection" content="telephone=no">
|
||
|
||
<title>{% block title %}{% endblock %} – NateMan</title>
|
||
|
||
<link rel="icon" type="image/png" sizes="192x192"
|
||
href="{{ url_for('static', filename='img/logo.png') }}">
|
||
<link rel="apple-touch-icon" href="{{ url_for('static', filename='img/icon-apple.png') }}">
|
||
|
||
<!--[if !IE]><!-->
|
||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||
<!--<![endif]-->
|
||
<script>
|
||
window.onload = function() {
|
||
{% for message in get_flashed_messages(with_categories=True, category_filter='alert') %}
|
||
alert({{ message[1] | tojson }});
|
||
{% endfor %}
|
||
|
||
{% block js_window_onload %}{% endblock %}
|
||
};
|
||
|
||
{% block js_head %}{% endblock %}
|
||
</script>
|
||
{% block head %}{% endblock %}
|
||
</head>
|
||
|
||
|
||
<body>
|
||
<header>
|
||
<a id="nateman-logo-container" href="{{ url_for('klausuren.mine' if g.lehrer is not none else 'index.index') }}">
|
||
<img id="nateman-logo" alt="NateMan Logo"
|
||
src="{{ url_for('static', filename='img/logo.png') }}" draggable="false">
|
||
</a>
|
||
<h1 class="header-text">NateMan<span class="optional"> – Nachschreibtermin-Manager</span></h1>
|
||
</header>
|
||
|
||
<!--[if IE]>
|
||
<p style="color: #ff0000; font-size: 25px;">
|
||
Diese Seite wird im Internet Explorer nicht richtig angezeigt.<br>
|
||
Um sie richtig angezeigt zu bekommen, benutzen Sie einen anderen Browser.
|
||
</p>
|
||
<![endif]-->
|
||
|
||
<nav>
|
||
{% if g.lehrer is not none %}
|
||
<a href="{{ url_for('auth.logout') }}" data-icon="">
|
||
<span>
|
||
Angemeldet als <b>{{ g.lehrer.kuerzel }}</b><br>
|
||
<b>Abmelden</b>
|
||
</span>
|
||
</a>
|
||
{% else %}
|
||
<a href="{{ url_for('auth.login') }}" data-icon="">
|
||
<span>Anmelden</span>
|
||
</a>
|
||
|
||
<a href="{{ url_for('auth.password_reset') }}" data-icon="">
|
||
<span>Passwort vergessen</span>
|
||
</a>
|
||
{% endif %}
|
||
|
||
<hr>
|
||
{% if g.lehrer is not none and g.lehrer.pwd_changed %}
|
||
<a href="{{ url_for('klausuren.mine') }}" data-icon="">
|
||
<span>Meine Klausuren</span>
|
||
</a>
|
||
{% endif %}
|
||
|
||
{% if g.lehrer is none or g.lehrer.pwd_changed %}
|
||
{% for stufe in Stufe.query.all() %}
|
||
<a href="{{ url_for('klausuren.stufe', stufe_name=stufe.name) }}" data-icon="">
|
||
<span>Klausuren {{ stufe.name }}</span>
|
||
</a>
|
||
{% endfor %}
|
||
{% endif %}
|
||
|
||
{% if g.lehrer is not none and g.lehrer.pwd_changed %}
|
||
{% if g.lehrer.can_access() %}
|
||
<a href="{{ url_for('schueler.versaeumnisse') }}" data-icon="">
|
||
<span>Versäumnisse</span>
|
||
</a>
|
||
|
||
{%
|
||
if Klausurteilnahme.query.join(Klausur)
|
||
.filter(Klausurteilnahme.versaeumt)
|
||
.filter(Klausurteilnahme.nachgeschrieben == false)
|
||
.filter(Klausur.stufe_name.in_(g.lehrer.accessible_stufen(names=True)))
|
||
.count() != 0
|
||
%}
|
||
<hr>
|
||
<a href="{{ url_for('fileio.export') }}" data-icon="">
|
||
<span>Nachschreibplan exportieren</span>
|
||
</a>
|
||
{% elif g.lehrer.is_admin %}
|
||
<hr>
|
||
{% endif %}
|
||
|
||
{% if g.lehrer.is_admin %}
|
||
<a href="{{ url_for('fileio.import') }}" data-icon="">
|
||
<span>Klausurpläne importieren</span>
|
||
</a>
|
||
{% endif %}
|
||
{% endif %}
|
||
<hr>
|
||
|
||
<a href="{{ url_for('auth.account') }}" data-icon="">
|
||
<span>Mein Konto</span>
|
||
</a>
|
||
|
||
{% if g.lehrer.is_admin %}
|
||
<a href="{{ url_for('admin.index') }}" data-icon="">
|
||
<span>Administration</span>
|
||
</a>
|
||
{% endif %}
|
||
{% endif %}
|
||
</nav>
|
||
|
||
<div id="flash-container">
|
||
{% for message in get_flashed_messages(with_categories=True) %}
|
||
{% if message[0] != 'alert' %}
|
||
<div class="flash flash-{{ message[0] }}" tabindex="0">
|
||
{{ message[1] | replace('\n', '<br>') }}
|
||
</div>
|
||
{% endif %}
|
||
{% endfor %}
|
||
</div>
|
||
|
||
<div id="page-section">
|
||
<div id="page">
|
||
<main>
|
||
<noscript>
|
||
<p class="warn">{#
|
||
#}JavaScript ist in Ihrem Browser deaktiviert bzw. nicht unterstützt.
|
||
Diese Seite benötigt JavaScript, um richtig zu funktionieren.
|
||
</p>
|
||
</noscript>
|
||
{% if g.lehrer and g.lehrer.pwd_changed %}
|
||
{% if g.lehrer.email is none %}
|
||
<p class="warn">{#
|
||
#}Sie haben keine E-Mail-Adresse festgelegt.
|
||
<a href="{{ url_for('auth.account') }}">Festlegen</a>
|
||
</p>
|
||
{% elif not g.lehrer.is_confirmed %}
|
||
<p class="warn">Sie haben Ihre E-Mail-Adresse noch nicht bestätigt.</p>
|
||
{% endif %}
|
||
{% endif %}
|
||
<h2 class="page-heading">{% block header %}{% endblock %}</h2>
|
||
{% block content %}{% endblock %}
|
||
</main>
|
||
|
||
<footer>
|
||
<div class="footer-left">
|
||
<a href="{{ nateman_config['schule']['website-url'] }}">
|
||
<img id="school-logo"
|
||
src="{{ nateman_config['schule'].get('schule.logo-url') or url_for('static', filename='img/school-logo.png') }}"
|
||
alt="Schullogo" draggable="false">
|
||
</a>
|
||
</div>
|
||
|
||
<div class="footer-right">
|
||
<span style="float: left">
|
||
<a href="{{ nateman_config['schule']['website-url'] }}">
|
||
{{ nateman_config['schule']['name'] }}
|
||
</a>
|
||
<br>
|
||
<a href="https://github.com/nelsbrock/NateMan">
|
||
NateMan – Nachschreibtermin-Manager
|
||
</a>
|
||
</span>
|
||
<span style="float: right">
|
||
<a href="{{ nateman_config['schule']['imprint-url'] }}">Impressum</a>
|
||
·
|
||
<a href="{{ nateman_config['schule']['privacy-policy-url'] }}">Datenschutz</a>
|
||
·
|
||
<a href="{{ url_for('info.about') }}">Über</a>
|
||
</span>
|
||
</div>
|
||
</footer>
|
||
</div>
|
||
</div>
|
||
|
||
<script src="{{ url_for('static', filename='script.js') }}" charset="utf-8"></script>
|
||
<script>
|
||
{% block js_body_end %}{% endblock %}
|
||
</script>
|
||
|
||
</body>
|
||
</html>
|