{% extends "base.html" %}{% block title %}Meine Vorlesungen{% endblock %}{% block content %}
| ID | Titel | Dozent | Semester | {% if user.user_rights > 2 %}{% endif %} | |
|---|---|---|---|---|---|
| {{ lecture.id }} | {{ lecture.title }} | {{ lecture.instructor }} | {{ lecture.semester }} | {% if user.user_rights > 2 %}Bearbeiten | {% endif %}
{% if user.user_rights > 2 %}
{% endif %}
|