{% extends "admin/base_site.html" %} {% load admin_static i18n fb_tags fb_versions %} {% block stylesheets %} {{ block.super }} {% endblock %} {% block javascripts %} {{ block.super }} {{ media }} {% endblock %} {% block bodyclass %}grp-change-form grp-filebrowser{% if query.pop %} grp-popup{% endif %}{% endblock %} {% block content-class %}{% endblock %} {% block breadcrumbs %}{% include "filebrowser/include/breadcrumbs.html" %}{% endblock %} {% block content %}
{% csrf_token %} {% if form.errors %}

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

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

{{ form.name.help_text|safe }}

{% endif %}

{% trans "Edit" %}

{{ form.custom_action }} {% if form.custom_action.errors %}
    {{ form.custom_action.errors }}
{% endif %} {% 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.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 %}