Custom Calendar
This commit is contained in:
12
templates/restore-events.html
Normal file
12
templates/restore-events.html
Normal file
@ -0,0 +1,12 @@
|
||||
{% extends "index.html" %}
|
||||
{% block content %}
|
||||
<h2>Ausgeblendete Vorlesungen</h2>
|
||||
{% for event in events %}
|
||||
<li>
|
||||
<a href={{ url_for("restoreEvent", id=event.eventid) }}>{{ event.name }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
{% if events | length == 0 %}
|
||||
<a href = {{ url_for("displayRapla") }}>Zurück zum Stundenplan (keine ausgeblendeten Vorlesungen) </a>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user