fisk/core/templates/window-content/hooks.html

20 lines
456 B
HTML
Raw Normal View History

2022-10-14 06:20:30 +00:00
<div class="buttons">
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
2022-10-16 13:14:53 +00:00
hx-get="{% url 'hook_action' type=type %}"
2022-10-14 06:20:30 +00:00
hx-trigger="click"
hx-target="#modals-here"
class="button is-info">
<span class="icon-text">
<span class="icon">
<i class="fa-solid fa-plus"></i>
</span>
<span>Hook</span>
</span>
</button>
</div>
{% include 'partials/notify.html' %}
2022-10-12 06:22:22 +00:00
{% include 'partials/hook-list.html' %}