{% extends "admin/base_site.html" %} {% load admin_static i18n fb_tags fb_versions %} {% load url from future %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block bodyclass %}change-form filebrowser{% if query.pop %} popup{% endif %}{% endblock %} {% block coltype %}colM{% endblock %} {% block breadcrumbs %}{% include "filebrowser/include/breadcrumbs.html" %}{% endblock %} {% block content %}
{% csrf_token %}
{% if form.errors %}

{% trans 'Please correct the following errors.' %}

{% endif %}
{% if form.name.errors %}{{ form.name.errors }}{% endif %}
{{ form.name }} {% if form.name.help_text %}

{{ form.name.help_text|safe }}

{% endif %}

{% trans "Edit" %}

{% if form.custom_action.errors %}{{ form.custom_action.errors }}{% endif %}
{{ form.custom_action }} {% if form.custom_action.help_text %}

{{ form.custom_action.help_text|safe }}

{% endif %}
{% if fileobject.filetype == "Folder" %}

{% trans "Folder Information" %}

{{ fileobject.datetime|date:"N j, Y" }}

{% endif %} {% if fileobject.filetype != "Folder" %}

{% trans "File Information" %}

{{ fileobject.url }}

{{ fileobject.filesize|filesizeformat }}

{{ fileobject.datetime|date:"N j, Y" }}

{% if fileobject.filetype == "Image" %}

{{ fileobject.width }} x {{ fileobject.height }} px

{% endif %}
{% endif %} {% if fileobject.filetype == "Image" %}

{% trans "Image Versions" %}

{% if settings_var.ADMIN_THUMBNAIL %}
{% endif %} {% if settings_var.ADMIN_VERSIONS %} {% for version in settings_var.ADMIN_VERSIONS %} {% version_object fileobject version as image_version %} {% version_setting version %}
{% endfor %} {% endif %}
{% endif %}
{% endblock %}