{% extends 'base.html' %} {% block title %} {{ video.title }} | {{ course.title }} {% endblock title %} {% block head %} {% endblock head %} {% load humanize %} {% block body %}
{{ course.title }}
{{ lecture.title }}
{% for section in section %}

{% for lecture in lecture %}{% if lecture.section == section %} {% if lecture.lecture_type == "NOT PREMIUM" %}
  • {{ lecture.title }}
  • {% else %}
  • {{ lecture.title }} PREMIUM VIDEO
  • {% endif %}{% else %}{% endif %}{% endfor %}
    {% endfor %}
    {{ video.title }}

    Comments: ({{ lecture_comment.count }})

    {% csrf_token %}
    {% for comment in lecture_comment reversed %}
    {{ comment.user.username }} {{ comment.timestamp | naturaltime }}
    {{ comment.comment}}
    {% endfor %}
    {% endblock body %}