{% extends "journal/base.html" %} {% load comments %} {% block path %}artifacts » videos » {{ object.title }} {% endblock %} {% block title %} {% if object.title %}{{ object.title }}{% else %}[Untitled Video]{% endif %} {% endblock %} {% block content %}
{% if object %}

Video uploaded {{ object.date }}, {% if object.author %}
by {{ object.author }},{% endif %} {% if object.last_edited %}
last edited {{ object.last_edited }}.{% endif %}

{% if object.external_url %}View this video here

{%endif%} Download the video.

The video codec is {{ object.codec }}.
{% if object.html_caption %}

{{object.html_caption|safe}}{% endif %} {% else %}

This is not the artifact you are looking for.

{% endif %} {% endblock %} {% block commentary %}
{% get_comment_list for object as comments %} {% include "comment_list" %}

Post a comment

{% render_comment_form for object %}
{% endblock %}