12 lines
426 B
HTML
12 lines
426 B
HTML
{% extends "plan-general.html" %}
|
|
{% block loginout %}
|
|
<li><a class="bottom" href={{ url_for("logout") }}>Log-Out</a></li>
|
|
{% endblock %}
|
|
{% block startcontent %}
|
|
<h2>{{ name }}s Vorlesungsplan</h2>
|
|
{% endblock %}
|
|
{% block endcontent %}
|
|
<a href={{ url_for("deliverCalendar", uid=uid) }}>Kalender-Abo</a>
|
|
<br>
|
|
<a href={{ url_for("restoreVL") }}>Ausgeblendete Vorlesungen wieder einblenden</a>
|
|
{% endblock %} |