{% extends "base.html" %} {% load static %} {% block content %} {% include "includes/sidenav.html" %}
{% if lecture.thumbnail %} Lecture Thumbnail {% else %}
{% endif %}

{{ lecture.title|capfirst }}

{% if request.user.userprofile == lecture.instructor %} Edit Lecture Back to Dashboard {% endif %}

{{ lecture.description|truncatewords:50 }}

Instructor: {{ lecture.instructor.user.username }} Duration: {{ lecture.duration }} minutes {% if lecture.scheduled_time %} Scheduled: {{ lecture.scheduled_time|date:"F d, Y H:i" }} {% endif %}
Type: {{ lecture.get_content_type_display }}
{% for tag in lecture.tags.all %} {{ tag.name }} {% endfor %}

Lecture Content

{% if lecture.content_type == "VIDEO" and lecture.embed_url %}

{{ lecture.content|linebreaks }}

Watch Separately

{% elif lecture.content_type == "LIVE" %}

Live Session URL: {{ lecture.live_url }}

{% elif lecture.content_type == "DOCUMENT" %}

{{ lecture.content|linebreaks }}

{% elif lecture.content_type == "QUIZ" %}

Quiz content will be displayed here.

{% endif %}
{% endblock content %}