{% extends "base.html" %} {% block content %}

Lecture Details

ID
{{ record.id }}
Video ID
{{ record.video_id }}
Mirror ID
{% if record.mirror_video_id %} {{ record.mirror_video_id }} available {% else %} Not available no mirror {% endif %}
Syllabus
{{ record.syllabus_id or '' }}
Subject
{{ record.subject or '' }}
Chapter
{{ record.chapter or '' }}
Lecturer
{{ record.lecturer or '' }}
Nepali Date
{{ record.nepali_date or '' }}
Time
{{ record.time or '' }}
Notes
{{ record.notes or '' }}
Playback source:
{% if config_status == 'missing_mirror' %}
Mirror ID is not available for this lecture, but your config is set to mirror_only.
You can change the PLAYBACK_SOURCE variable in web.py to prefer_mirror or original_only.
{% elif config_status == 'using_original' %}
Using original video (no mirror available). Config: {{ playback_config }}
{% else %} {% if using_mirror %} Mirror (ID: {{ embed_vid }}) {% else %} Original (ID: {{ embed_vid }}) {% endif %} {% endif %} {% if embed_url %}
{% else %}
No video can be played. {% if config_status == 'missing_mirror' %} Please add a mirror ID to this lecture or change the playback config. {% endif %}
{% endif %}
Back to list Edit
Watch Local Video
{% endblock %}