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

75 lines
2.3 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>{{ item.name }}</td>
2022-10-17 06:20:30 +00:00
<td><code>{{settings.URL}}/{{settings.HOOK_PATH}}/{{ item.hook }}/</code></td>
2022-10-15 17:45:25 +00:00
<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-16 13:14:53 +00:00
hx-get="{% url 'hook_action' type=type hook_id=item.id %}"
2022-10-12 06:22:22 +00:00
hx-trigger="click"
2022-10-16 13:14:53 +00:00
hx-target="#{{ type }}s-here"
2022-10-12 06:22:22 +00:00
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 }}"}'
2022-10-16 13:14:53 +00:00
hx-delete="{% url 'hook_action' type=type hook_id=item.id %}"
2022-10-15 17:45:25 +00:00
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-16 13:14:53 +00:00
{% if type == 'page' %}
<a href="{% url 'callbacks' type=type 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>
2022-10-16 13:14:53 +00:00
</button>
</a>
{% else %}
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-get="{% url 'callbacks' type=type hook_id=item.id %}"
hx-trigger="click"
hx-target="#{{ type }}s-here"
class="button is-success">
<span class="icon-text">
<span class="icon">
<i class="fa-solid fa-eye"></i>
</span>
</span>
</button>
{% endif %}
2022-10-15 17:45:25 +00:00
</div>
</td>
</tr>
{% endfor %}
2022-10-12 06:22:22 +00:00
</table>