2023-02-11 14:58:36 +00:00
|
|
|
{% load cache %}
|
2023-02-11 17:24:13 +00:00
|
|
|
{% load cachalot cache %}
|
|
|
|
{% get_last_invalidation 'core.NotificationRule' as last %}
|
2023-02-10 20:57:17 +00:00
|
|
|
{% include 'mixins/partials/notify.html' %}
|
2023-02-11 17:24:13 +00:00
|
|
|
{% cache 600 objects_rules request.user.id object_list last %}
|
2023-02-11 14:58:36 +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>interval</th>
|
|
|
|
<th>window</th>
|
|
|
|
<th>priority</th>
|
|
|
|
<th>topic</th>
|
|
|
|
<th>enabled</th>
|
|
|
|
<th>data length</th>
|
2023-02-11 18:06:09 +00:00
|
|
|
<th>match</th>
|
2023-02-11 14:58:36 +00:00
|
|
|
<th>actions</th>
|
|
|
|
</thead>
|
|
|
|
{% for item in object_list %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="/?query=*&source=all&rule={{ item.id }}">{{ item.id }}</a></td>
|
|
|
|
<td>{{ item.user }}</td>
|
|
|
|
<td>{{ item.name }}</td>
|
|
|
|
<td>{{ item.interval }}s</td>
|
|
|
|
<td>{{ item.window|default_if_none:"—" }}</td>
|
|
|
|
<td>{{ item.priority }}</td>
|
|
|
|
<td>{{ item.topic|default_if_none:"—" }}</td>
|
|
|
|
<td>
|
|
|
|
{% if item.enabled %}
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-check"></i>
|
2023-01-12 07:20:43 +00:00
|
|
|
</span>
|
2023-02-11 14:58:36 +00:00
|
|
|
{% else %}
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-xmark"></i>
|
2023-01-12 07:20:43 +00:00
|
|
|
</span>
|
2023-02-11 14:58:36 +00:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>{{ item.data|length }}</td>
|
2023-02-11 18:06:09 +00:00
|
|
|
<td>{{ item.matches }}</td>
|
2023-02-11 14:58:36 +00:00
|
|
|
<td>
|
|
|
|
<div class="buttons">
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-get="{% url 'rule_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-01-15 18:40:17 +00:00
|
|
|
</span>
|
2023-02-11 14:58:36 +00:00
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-delete="{% url 'rule_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>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-post="{% url 'rule_clear' type=type pk=item.id %}"
|
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#modals-here"
|
|
|
|
hx-swap="innerHTML"
|
|
|
|
hx-confirm="Are you sure you wish to clear matches for {{ item.name }}?"
|
|
|
|
class="button">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-arrow-rotate-right"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2023-01-12 07:20:43 +00:00
|
|
|
|
2023-02-11 14:58:36 +00:00
|
|
|
</table>
|
|
|
|
{% endcache %}
|