summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/widgets/clearable_file_input.html
blob: f2721fbfdbd96d91ec0989d33c10966bdeaecd24 (plain)
1
2
3
4
5
6
7
8
{% load i18n %}{% if widget.is_initial %}
<p class="file-upload w-100 mb-1">{{ widget.initial_text }}{% trans ":" %} <a href="{{ widget.value.url }}">{{ widget.value }}</a>{% if not widget.required %}
&nbsp; <span class="clearable-file-input">
<input type="checkbox" name="{{ widget.checkbox_name }}" id="{{ widget.checkbox_id }}">
<label for="{{ widget.checkbox_id }}">{{ widget.clear_checkbox_label }}</label></span>{% endif %}
</p>
<p class="w-100 m-0">{{ widget.input_text }}{% trans ":" %}</p>{% endif %}
<input type="{{ widget.type }}" name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %}>