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

{{ object.title }} Back to list

{% video object.video as my_video %}
    Backend: {{ my_video.backend }}
    URL: {{ my_video.url }}
    Code: {{ my_video.code }}
    Thumbnail: {{ my_video.thumbnail }}
    HTTPS: {% if my_video.protocol == 'https' %}Yes{% else %}No{% endif %}
{% video my_video "large" %} {% endvideo %} {% endblock %}