{% extends "admin/base_site.html" %} {% load admin_static i18n fb_tags fb_csrf %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block bodyclass %}change-form filebrowser{% if query.pop %} popup{% endif %}{% endblock %} {% block coltype %}colM{% endblock %} {% block breadcrumbs %}{% include "filebrowser/include/breadcrumbs.html" %}{% endblock %} {% block content %}
{% fb_csrf_token %}
{% if form.errors %}

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

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

{{ 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 %}