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

78 lines
2.5 KiB
HTML
Raw Normal View History

2023-02-11 14:52:00 +00:00
{% load cache %}
2023-02-11 17:22:25 +00:00
{% load cachalot cache %}
{% get_last_invalidation 'core.AssetGroup' 'core.AssetRule' as last %}
{% include 'mixins/partials/notify.html' %}
2023-02-15 07:20:53 +00:00
{% cache 600 objects_assetgroups request.user.id object_list type last %}
2023-02-11 14:52:00 +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 }}">
<thead>
<th>id</th>
<th>user</th>
<th>name</th>
<th>description</th>
2023-02-11 18:07:05 +00:00
<th>status</th>
<th>hook</th>
2023-02-11 14:52:00 +00:00
<th>actions</th>
</thead>
{% for item in object_list %}
<tr>
<td>{{ item.id }}</td>
<td>{{ item.user }}</td>
<td>{{ item.name }}</td>
2023-02-15 18:33:38 +00:00
<td>{{ item.description|truncatechars:80 }}</td>
2023-02-11 18:46:26 +00:00
<td>
<a
href="{% url 'assetrules' type='page' group=item.id %}">
2023-02-11 18:46:26 +00:00
{{ item.matches }}
</a>
</td>
<td>
<a
class="has-text-grey"
onclick="window.prompt('Copy to clipboard: Ctrl+C, Enter', '{{settings.URL}}/{{settings.ASSET_PATH}}/{{ item.webhook_id }}/');">
<span class="icon" data-tooltip="Copy to clipboard">
<i class="fa-solid fa-copy" aria-hidden="true"></i>
</span>
</a>
</td>
2023-02-11 14:52:00 +00:00
<td>
<div class="buttons">
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-get="{% url 'assetgroup_update' type=type pk=item.id %}"
hx-trigger="click"
hx-target="#{{ type }}s-here"
hx-swap="innerHTML"
class="button">
<span class="icon-text">
<span class="icon">
<i class="fa-solid fa-pencil"></i>
</span>
2023-02-10 07:20:19 +00:00
</span>
2023-02-11 14:52:00 +00:00
</button>
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-delete="{% url 'assetgroup_delete' type=type pk=item.id %}"
hx-trigger="click"
hx-target="#modals-here"
hx-swap="innerHTML"
hx-confirm="Are you sure you wish to delete {{ item.name }}?"
class="button">
<span class="icon-text">
<span class="icon">
<i class="fa-solid fa-xmark"></i>
</span>
2023-02-10 07:20:19 +00:00
</span>
2023-02-11 14:52:00 +00:00
</button>
</div>
</td>
</tr>
{% endfor %}
2023-02-10 07:20:19 +00:00
2023-02-11 14:52:00 +00:00
</table>
{% endcache %}