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

{% trans "LATEST" %}

{% trans "Captured" %}: {{ latest_sample.created_at|date:"DATETIME_FORMAT" }}
{% trans "Kind" %}: {{ latest_sample.get_kind_display }}
{% if latest_sample.method %}
{% trans "Method" %}: {{ latest_sample.method }}
{% endif %}
{% if take_snapshot_url %}
{% trans "Take Snapshot" %}
{% endif %}
{% if latest_preview %} {% trans 'Latest snapshot' %} {% else %} {% trans "Snapshot unavailable" %} {% endif %}
{% endif %} {% endblock %}