{% extends "admin/base_site.html" %} {% load i18n l10n fb_tags admin_static %} {% load url from future %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block bodyclass %}change-form filebrowser{% if query.pop %} popup{% endif %}{% endblock %} {% block coltype %}flex{% endblock %} {% block breadcrumbs %}{% include "filebrowser/include/breadcrumbs.html" %}{% endblock %} {% block content %}
{% for item in breadcrumbs %} {% if forloop.last %} {% trans "Back" %} {% endif %} {% empty %} {% trans "Back" %} {% endfor %}

{% trans "Help" %}

{% for extension in settings_var.EXTENSIONS.items %} {% if forloop.first %}
{% endif %} {% ifnotequal extension.0 'Folder' %} {{ extension.0|safe }} ({{ extension.1|join:", "|safe }})
{% endifnotequal %} {% endfor %}
{{ settings_var.MAX_UPLOAD_SIZE|filesizeformat }}
{% if settings_var.NORMALIZE_FILENAME or settings_var.CONVERT_FILENAME %}

{% if settings_var.NORMALIZE_FILENAME %} {% trans "The Name will be normalized by converting or stripping all non-standard characters." %}
{% endif %} {% if settings_var.CONVERT_FILENAME %} {% trans "The Name will be converted to lowercase. Spaces will be replaced with underscores." %} {% endif %}

{% endif %}
{% endblock %}