Implement adding/editing hooks

This commit is contained in:
2022-10-15 18:45:25 +01:00
parent 7118af5d3c
commit 8369f44bd4
6 changed files with 119 additions and 30 deletions

View File

@@ -5,7 +5,11 @@
{% block modal_content %}
<form
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-put="{% url 'add-hook' %}"
{% if hook_id is not None %}
hx-put="{% url 'hook_action' hook_id %}"
{% else %}
hx-put="{% url 'hook_action' %}"
{% endif %}
hx-target="#hooks-table"
hx-swap="outerHTML">
{% csrf_token %}