{% extends "base.html" %}{% block title %}{% endblock %}{% block content %} {% block header %} {% endblock %} {% include 'includes/_navbar_lecture_by_id.html' %}
Title:
{{ lecture.title }}
Dozent:
{{ lecture.instructor }}
Semester:
{{ lecture.semester }}


Vorlesungsthemen und -konzepte:

{% for subject_concept in unique_subjects %}
{{ subject_concept }}
    {% for entry in lecture.subjects_and_conceptss %} {% if entry.subject == subject_concept%}
  1. {{ entry.concept }}
  2. {% endif %} {% endfor %}
{% endfor %}







{% endblock %}