{% extends 'admin/filer_gui/widgets/admin_file.html' %}
{% load i18n filer_admin_tags staticfiles thumbnail %}
{% block preview %}
{% if file_object %}
{% if file_object.file_type == 'Image' and file_object.icons.32 %}
{% thumbnail file_object 192x144 as thumb %}
{% elif file_object.icons.32 %}
{% else %}
{% trans 'File is missing' %}
{% endif %}
{% else %}
{% trans 'No file' %}
{% endif %}
{% endblock %}