moviewyrm/bookwyrm/templates/widgets/clearable_file_input_with_warning.html

32 lines
899 B
HTML
Raw Permalink Normal View History

{% load i18n %}
2021-06-02 16:17:53 +00:00
{% load utilities %}
{% if widget.is_initial %}
2021-08-21 17:33:50 +00:00
<p class="mb-1">
{{ widget.initial_text }}:
<a href="{{ widget.value.url }}">{{ widget.value|truncatepath:10 }}</a>
</p>
{% if not widget.required %}
<p class="mb-1">
<label class="has-text-weight-normal">
2021-06-02 16:30:36 +00:00
<input type="checkbox" name="{{ widget.checkbox_name }}" id="{{ widget.checkbox_id }}"{% if widget.attrs.disabled %} disabled{% endif %}>
{{ widget.clear_checkbox_label }}
2021-08-21 17:33:50 +00:00
</label>
</p>
{% endif %}
2021-06-02 16:17:53 +00:00
{% endif %}
2021-08-21 17:33:50 +00:00
<p class="mb-1">
{% if widget.is_initial %}
{{ widget.input_text }}:
{% endif %}
<input type="{{ widget.type }}" name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %}>
<span class="help file-cta is-hidden file-too-big">
{% trans "File exceeds maximum size: 10MB" %}
</span>
2021-06-02 16:17:53 +00:00
</p>