14 lines
654 B
HTML
14 lines
654 B
HTML
<p>
|
|
{% if widget.is_initial %}
|
|
<img src="{{MEDIA_URL}}{{widget.value}}" style="max-width: 150px; max-height: 150px; margin: 8px;" />
|
|
{% if not widget.required %}
|
|
<span class="clearable-file-input">
|
|
<input type="checkbox" name="{{ widget.checkbox_name }}" id="{{ widget.checkbox_id }}"{% if widget.attrs.disabled %} disabled{% endif %}>
|
|
<label for="{{ widget.checkbox_id }}">{{ widget.clear_checkbox_label }}</label>
|
|
</span>
|
|
{% endif %}
|
|
<br>
|
|
<span>{{ widget.input_text }}:</span>
|
|
{% endif %}
|
|
<input type="{{ widget.type }}" name="{{ widget.name }}"{% include "django/forms/widgets/attrs.html" %}>
|
|
</p> |