mirror of
https://github.com/django-components/django-components.git
synced 2025-10-03 18:54:33 +00:00
19 lines
514 B
HTML
19 lines
514 B
HTML
<form
|
|
{% if submit_href and editable %} action="{{ submit_href }}" {% endif %}
|
|
method="{{ method }}"
|
|
{% html_attrs attrs %}
|
|
>
|
|
{% slot "prepend" / %}
|
|
|
|
<div {% html_attrs form_content_attrs %}>
|
|
{# Generate a grid of fields and labels out of given slots #}
|
|
<div class="grid grid-cols-[auto,1fr] gap-x-4 gap-y-2 items-center">
|
|
{% for field_name, label in fields %}
|
|
{{ label }}
|
|
{% slot name=field_name / %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
{% slot "append" / %}
|
|
</form>
|