puchar/crispy_forms/templates/bootstrap4/layout/baseinput.html

10 lines
335 B
HTML
Raw Permalink Normal View History

2022-12-05 04:12:09 +01:00
<input type="{{ input.input_type }}"
name="{% if input.name|wordcount > 1 %}{{ input.name|slugify }}{% else %}{{ input.name }}{% endif %}"
value="{{ input.value }}"
{% if input.input_type != "hidden" %}
class="{{ input.field_classes }}"
id="{{ input.id }}"
{% endif %}
{{ input.flat_attrs }}
/>