{% extends "admin/base_site.html" %} {% load static i18n fb_tags fb_compat %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block bodyclass %}change-form filebrowser{% 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" }}

{% endif %}
{% endblock %}