mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-19 10:31:07 +00:00
16 lines
616 B
HTML
16 lines
616 B
HTML
{% if widget.is_initial %}
|
|
{{ widget.initial_text }}:
|
|
<a href="{{ widget.value.url }}">{{ widget.value }}</a>
|
|
{% if not widget.required %}
|
|
<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>
|
|
{% endif %}
|
|
<br>
|
|
{{ widget.input_text }}:
|
|
{% endif %}
|
|
<input type="{{ widget.type }}"
|
|
name="{{ widget.name }}"
|
|
{% include "django/forms/widgets/attrs.html" %}>
|