{% extends "admin/base_site.html" %} {% load i18n adminmedia fb_tags fb_csrf %} {% block stylesheets %} {{ 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 %} {% if form.errors %}

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

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

{{ form.name.help_text|safe }} {% 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 %}