{% extends 'components/modal.html' %} {% load i18n %} {% block modal-title %} {% trans "Add file link" %} {% endblock %} {% block modal-form-open %}
{% endblock %} {% block modal-body %} {% csrf_token %}
{{ file_link_form.name }} {% include 'snippets/form_errors.html' with errors_list=file_link_form.name.errors id="desc_name" %}
{% include 'snippets/form_errors.html' with errors_list=file_link_form.url.errors id="desc_url" %}
{% include 'snippets/form_errors.html' with errors_list=file_link_form.filetype.errors id="desc_filetype" %}
{% endblock %} {% block modal-footer %} {% if not static %} {% trans "Cancel" as button_text %} {% include 'snippets/toggle/toggle_button.html' with text=button_text %} {% endif %} {% endblock %} {% block modal-form-close %}
{% endblock %}