48 lines
1.1 KiB
HTML
48 lines
1.1 KiB
HTML
|
<div class="buttons">
|
||
|
<button
|
||
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||
|
hx-get="#"
|
||
|
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' %}
|
||
|
<table class="table is-fullwidth is-hoverable">
|
||
|
<thead>
|
||
|
<th>user</th>
|
||
|
<th>hook</th>
|
||
|
<th>received hooks</th>
|
||
|
<th>actions</th>
|
||
|
</thead>
|
||
|
{% for item in hooks %}
|
||
|
<tr>
|
||
|
<td>{{ item.user }}</td>
|
||
|
<td>{{ item.hook }}</td>
|
||
|
<td>{{ item.received }}</td>
|
||
|
<td>
|
||
|
<button
|
||
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||
|
hx-get="#"
|
||
|
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>Hook</span>
|
||
|
</span>
|
||
|
</button>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|