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

{% trans "LATEST" %}

{% trans "Captured" %}: {% if latest_snapshot %} {{ latest_snapshot.captured_at|date:"DATETIME_FORMAT" }} {% else %} {% trans "Not captured" %} {% endif %}
{% trans "Resolution" %}: {% if latest_snapshot and latest_snapshot.resolution_display %} {{ latest_snapshot.resolution_display }} {% else %} {% trans "Unknown" %} {% endif %}
{% trans "Format" %}: {% if latest_snapshot and latest_snapshot.image_format %} {{ latest_snapshot.image_format }} {% else %} {% trans "Unknown" %} {% endif %}
{% if latest_snapshot %} {% with preview=latest_snapshot.get_data_uri %} {% if preview %} {% trans 'Latest snapshot' %} {% else %} {% trans "Snapshot unavailable" %} {% endif %} {% endwith %} {% else %} {% trans "Snapshot unavailable" %} {% endif %}
{% endif %} {% endblock %}