{% extends "admin/base_site.html" %} {% load i18n static filer_admin_tags unfold %} {% block title %}{% translate "Add new" %} {% translate "folder" %} | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block breadcrumbs %}{% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block content %}

{% translate "Add new" %} {% translate "folder" %}

{% csrf_token %} {% filer_admin_context_hidden_formfields %}
{% include "unfold/helpers/messages/errornote.html" with errors=new_folder_form.errors %} {% include "unfold/helpers/messages/error.html" with errors=new_folder_form.non_field_errors %} {% for field in new_folder_form %} {% include "unfold/helpers/field.html" with field=field %} {% endfor %}
{% translate "Save" as label %} {% translate "Cancel" as cancel_label %} {% include "unfold_extra/filer/helpers/action_submit_row.html" with label=label cancel_label=cancel_label icon="create_new_folder" submit_name="_save" submit_class="w-full lg:w-auto" %}
{% endblock %}