{% extends "base.html" %}{% block title %}Meine 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' %}

Meine 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 %} {% endif %} {% endfor %}
ID Titel Dozent Semester
{{ lecture.id }} {{ lecture.title }} {{ lecture.instructor }} {{ lecture.semester }} Bearbeiten {% if user.user_rights > 2 %} {% endif %}






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