10 lines
214 B
HTML
10 lines
214 B
HTML
{% load tailwind_filters %}
|
|
|
|
<div hx-target="this" hx-swap="outerHTML">
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
{{ task_form|crispy }}
|
|
<button type="submit" hx-post=".">Submit</button>
|
|
</form>
|
|
</div>
|