2022-10-12 06:22:22 +00:00
|
|
|
{% include 'partials/notify.html' %}
|
|
|
|
|
2022-10-29 13:05:01 +00:00
|
|
|
<table
|
|
|
|
class="table is-fullwidth is-hoverable"
|
|
|
|
hx-target="#{{ context_object_name }}-table"
|
|
|
|
id="{{ context_object_name }}-table"
|
|
|
|
hx-swap="outerHTML"
|
|
|
|
hx-trigger="{{ context_object_name_singular }}Event from:body"
|
|
|
|
hx-get="{{ list_url }}">
|
2022-10-15 17:45:25 +00:00
|
|
|
<thead>
|
|
|
|
<th>id</th>
|
|
|
|
<th>user</th>
|
|
|
|
<th>name</th>
|
|
|
|
<th>hook</th>
|
2022-10-27 17:08:40 +00:00
|
|
|
<th>direction</th>
|
2022-10-15 17:45:25 +00:00
|
|
|
<th>received hooks</th>
|
|
|
|
<th>actions</th>
|
|
|
|
</thead>
|
2022-10-29 11:43:13 +00:00
|
|
|
{% for item in object_list %}
|
2022-10-15 17:45:25 +00:00
|
|
|
<tr>
|
|
|
|
<td>{{ item.id }}</td>
|
|
|
|
<td>{{ item.user }}</td>
|
2022-10-15 22:13:41 +00:00
|
|
|
<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-27 17:08:40 +00:00
|
|
|
<td>{{ item.direction }}</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-29 11:43:13 +00:00
|
|
|
hx-get="{% url 'hook_update' type=type pk=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-29 13:05:01 +00:00
|
|
|
hx-swap="innerHTML"
|
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-29 11:43:13 +00:00
|
|
|
hx-delete="{% url 'hook_delete' type=type pk=item.id %}"
|
2022-10-15 17:45:25 +00:00
|
|
|
hx-trigger="click"
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-target="#modals-here"
|
2022-10-29 13:05:01 +00:00
|
|
|
hx-swap="innerHTML"
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-confirm="Are you sure you wish to delete {{ item.name }}?"
|
2022-10-15 17:45:25 +00:00
|
|
|
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' %}
|
2022-10-29 11:43:13 +00:00
|
|
|
<a href="{% url 'callbacks' type='page' pk=item.id %}"><button
|
2022-10-16 13:14:53 +00:00
|
|
|
class="button is-success">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-eye"></i>
|
|
|
|
</span>
|
2022-10-15 20:51:47 +00:00
|
|
|
</span>
|
2022-10-16 13:14:53 +00:00
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-get="{% url 'callbacks' type=type pk=item.id %}"
|
2022-10-16 13:14:53 +00:00
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
2022-10-29 13:24:09 +00:00
|
|
|
hx-swap="innerHTML"
|
2022-10-16 13:14:53 +00:00
|
|
|
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>
|