{% extends "admin/change_form.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans "Add new" %} {% trans "folder" %}

{% csrf_token %}
{% if select_folder %}{% endif %} {% if new_folder_form.errors %}

{% blocktrans count new_folder_form.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{{ new_folder_form.non_field_errors }} {% endif %}
{{ new_folder_form.errors.name.as_ul }}
{% for field in new_folder_form %} {{ field }} {% endfor %}

{% endblock %}