fisk/core/templates/partials/hook-list.html

60 lines
1.7 KiB
HTML
Raw Normal View History

2022-10-12 06:22:22 +00:00
{% include 'partials/notify.html' %}
<table class="table is-fullwidth is-hoverable" id="hooks-table">
2022-10-15 17:45:25 +00:00
<thead>
<th>id</th>
<th>user</th>
<th>name</th>
<th>hook</th>
<th>received hooks</th>
<th>actions</th>
</thead>
{% for item in items %}
2022-10-15 17:45:25 +00:00
<tr>
<td>{{ item.id }}</td>
<td>{{ item.user }}</td>
<td><code>{{settings.URL}}/{{settings.HOOK_PATH}}/{{ item.name }}</code></td>
2022-10-15 17:45:25 +00:00
<td>{{ item.hook }}</td>
<td>{{ item.received }}</td>
<td>
<div class="buttons">
2022-10-12 06:22:22 +00:00
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
2022-10-15 17:45:25 +00:00
hx-get="{% url 'hook_action' hook_id=item.id %}"
2022-10-12 06:22:22 +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-pencil"></i>
</span>
</span>
</button>
2022-10-15 17:45:25 +00:00
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-delete="{% url 'hook_action' hook_id=item.id %}"
hx-trigger="click"
hx-target="#hooks-table"
class="button is-danger">
<span class="icon-text">
<span class="icon">
<i class="fa-solid fa-trash"></i>
</span>
</span>
</button>
2022-10-15 21:08:13 +00:00
<a href="{% url 'callbacks' type='page' hook_id=item.id %}"><button
class="button is-success">
<span class="icon-text">
<span class="icon">
<i class="fa-solid fa-eye"></i>
</span>
</span>
</button>
2022-10-15 21:08:13 +00:00
</a>
2022-10-15 17:45:25 +00:00
</div>
</td>
</tr>
{% endfor %}
2022-10-12 06:22:22 +00:00
</table>