{% extends "admin/base_site.html" %} {% load i18n adminmedia fb_tags fb_csrf %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block bodyclass %}change-form filebrowser{% if query.pop %} popup{% endif %}{% endblock %} {% block content-class %}content-flexible{% endblock %} {% block breadcrumbs %}{% include "filebrowser/include/breadcrumbs.html" %}{% endblock %} {% block content %}
{% fb_csrf_token %} {{ formset.management_form }}
{% if form.errors %}{{ form.errors }}{% endif %}
{% for form in formset.forms %}
{% if form.file.errors %}{{ form.file.errors }}{% endif %} {{ form.file }}
{% endfor %}

{% trans "Help" %}

{% for extension in settings_var.EXTENSIONS.items %} {% ifnotequal extension.0 'Folder' %}

{{ extension.0|safe }} ({{ extension.1|join:", "|safe }})


{% endifnotequal %} {% endfor %}

{{ settings_var.MAX_UPLOAD_SIZE|filesizeformat }}


{% if settings_var.CONVERT_FILENAME %}

{% trans "The Name will be converted to lowercase. Spaces will be replaced with underscores." %}


{% endif %}
{% endblock %}