{% extends "admin/change_form.html" %} {% load i18n %} {% block after_field_sets %} {{ block.super }} {% if original %}

{% trans "LATEST FRAME" %}

{% trans "Captured" %}: {% if original.last_frame_captured_at %} {{ original.last_frame_captured_at|date:"DATETIME_FORMAT" }} {% else %} {% trans "Not captured" %} {% endif %}
{% trans "Thumbnail" %}: {% if original.last_thumbnail_at %} {{ original.last_thumbnail_at|date:"DATETIME_FORMAT" }} {% else %} {% trans "Not captured" %} {% endif %}
{% trans "Frame Sample" %}: {% if last_frame_sample_url %} {% trans "View sample" %} {% else %} {% trans "Unavailable" %} {% endif %}
{% trans "Thumbnail Sample" %}: {% if last_thumbnail_sample_url %} {% trans "View sample" %} {% else %} {% trans "Unavailable" %} {% endif %}
{% if last_frame_preview %} {% trans 'Latest frame preview' %} {% else %} {% trans "Preview unavailable" %} {% endif %}
{% endif %} {% endblock %}