{% extends "base.html" %}{% block title %}Alle Vorlesungen{% endblock %}{% block content %}

Willkommen {{user.username}}

{% if user.user_rights > 2 %}
Eine neue Vorlesung erstellen {% endif %} {% if lectures|length == 0 %} Es gibt noch keine Vorlesungen {% endif %}
{% include 'includes/information_window.html' %}

Alle Vorlesungen


{% if user.user_rights > 2 %} {% endif %} {% for lecture in lectures %} {% if user.user_rights > 3 or not lecture.id in placement_test_lecture_ids %} {% if user.user_rights > 2 %} {% endif %} {% if lecture.id not in enrolled_lectures %} {% else %} {% if lecture.id in available_again %} {% elif lecture.id in left_lectures %} {% else %} {% endif %} {% endif %} {% endif %} {% endfor %}
ID Titel Dozent Semester
{{ lecture.id }} {{ lecture.title }} {{ lecture.instructor }} {{ lecture.semester }} Bearbeiten Vorlesung bereits verlassen {% if user.user_rights > 3 %} {% endif %}






{% endblock %} {% block scripts %} {% endblock %}