2022-10-16 13:14:53 +00:00
|
|
|
{% include 'partials/notify.html' %}
|
|
|
|
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
|
|
|
|
{% load crispy_forms_bulma_field %}
|
|
|
|
<form
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-post="{{ submit_url }}"
|
|
|
|
hx-target="#modals-here"
|
|
|
|
hx-swap="innerHTML">
|
2022-10-16 13:14:53 +00:00
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
|
|
|
<button
|
|
|
|
type="button"
|
|
|
|
class="button is-light modal-close-button">
|
|
|
|
Cancel
|
|
|
|
</button>
|
2022-12-08 07:20:46 +00:00
|
|
|
<button type="submit" class="button modal-close-button">Submit</button>
|
2022-10-16 13:14:53 +00:00
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|