{{ input_string }}
{% if not uploader_disabled and upload_url %}
{% block GALLERY_WIDGET_UPLOAD_FORM_BUTTON_BAR %}
{# The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload #}
{# The fileinput-button span is used to style the file input field as button #}
{% block GALLERY_WIDGET_BUTTON_BAR_ADD %}
{% trans "Add files..." %}
{% block GALLERY_WIDGET_BUTTON_BAR_ADD_FILE_INPUT %}
{% comment %}
GALLERY_WIDGET_BUTTON_BAR_ADD_FILE_INPUT and GALLERY_WIDGET_FILE_INPUT
control the same block.
FILE_INPUT is the original and shorter block name that has
been kept to function as a convenient alias as well as to
allow backward-compatibility with dependent projects.
Note: Only one should be overridden in the inheriting templates.
{% endcomment %}
{% block GALLERY_WIDGET_FILE_INPUT %}
{# The file input for the upload form. #}
{% endblock %}
{% endblock %}
{% block GALLERY_WIDGET_BUTTON_BAR_ADD_EXTRA %}
{% endblock %}
{% endblock %}
{% block GALLERY_WIDGET_BUTTON_BAR_CONTROL %}
{% endblock %}
{% block GALLERY_WIDGET_BUTTON_BAR_EXTRA %}
{% endblock %}
{% block GALLERY_WIDGET_PROGRESS_BAR %}
{# The global progress information #}
{# The global progress bar#}
{# The extended global progress information #}
{% endblock %}
{% endblock %}
{# The loading indicator is shown during file processing #}
{% block GALLERY_WIDGET_LINDICATOR %}
{% endblock %}
{% endif %}
{% block GALLERY_WIDGET_LISTING %}
{# The table listing the files available for upload/download #}
{% endblock %}
{% block GALLERY_WIDGET_EXTRA %}
{% endblock %}
{% block GALLERY_WIDGET_MODAL_GALLERY %}
{% comment %}
Note: data-filter=":even" is important because we have 2 link for each image (in download template),
so we just pick one (the even one, maybe "odd" also works) to use in gallery ui, or else each image
will show twice in the gallery.
{% endcomment %}
{% endblock %}
{% block GALLERY_WIDGET_TMPL_TEMPLATES %}
{# The template to display files available for upload #}
{% block GALLERY_WIDGET_TMPL_UPLOAD_TEMPLATE %}
{% endblock %}
{% block GALLERY_WIDGET_TMPL_DOWNLOAD_TEMPLATE %}
{# The template to display files available for download #}
{% endblock %}
{% endblock %}
{% block GALLERY_WIDGET_EDIT_MODAL %}
{# editModal #}