28 lines
476 B
HTML
28 lines
476 B
HTML
{% include 'partials/notify.html' %}
|
|
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% load crispy_forms_bulma_field %}
|
|
<form
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
hx-post="{{ submit_url }}"
|
|
hx-target="#modals-here"
|
|
hx-swap="innerHTML">
|
|
{% csrf_token %}
|
|
{{ form|crispy }}
|
|
<button
|
|
type="button"
|
|
class="button is-light modal-close-button">
|
|
Cancel
|
|
</button>
|
|
<button type="submit" class="button is-info modal-close-button">Submit</button>
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|