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

103 lines
3.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.Signal' as last %}
{% include 'mixins/partials/notify.html' %}
2023-02-15 07:20:53 +00:00
{% cache 600 objects_signals 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>signal</th>
<th>hook</th>
<th>direction</th>
<th>received hooks</th>
<th>actions</th>
</thead>
{% for item in object_list %}
<tr class="
{% if item.direction == 'buy' %}has-background-success-light
{% elif item.direction == 'sell' %}has-background-danger-light
{% endif %}">
<td>{{ item.id }}</td>
<td>{{ item.user }}</td>
<td>{{ item.name }}</td>
<td>{{ item.signal }}</td>
<td>
<a
2022-11-29 07:20:21 +00:00
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
2023-02-11 14:52:00 +00:00
hx-get="{% url 'hook_update' type=type pk=item.hook.id %}"
2022-11-29 07:20:21 +00:00
hx-trigger="click"
hx-target="#{{ type }}s-here"
2023-02-11 14:52:00 +00:00
hx-swap="innerHTML">{{ item.hook.name }}
</a>
</td>
<td>{{ item.direction }}</td>
<td>{{ item.received }}</td>
<td>
<div class="buttons">
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-get="{% url 'signal_update' type=type pk=item.id %}"
hx-trigger="click"
hx-target="#{{ type }}s-here"
hx-swap="innerHTML"
class="button">
2022-11-29 07:20:21 +00:00
<span class="icon-text">
<span class="icon">
2023-02-11 14:52:00 +00:00
<i class="fa-solid fa-pencil"></i>
2022-11-29 07:20:21 +00:00
</span>
</span>
</button>
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
2023-02-11 14:52:00 +00:00
hx-delete="{% url 'signal_delete' type=type pk=item.id %}"
2022-11-29 07:20:21 +00:00
hx-trigger="click"
2023-02-11 14:52:00 +00:00
hx-target="#modals-here"
2022-11-29 07:20:21 +00:00
hx-swap="innerHTML"
2023-02-11 14:52:00 +00:00
hx-confirm="Are you sure you wish to delete {{ item.name }}?"
class="button">
2022-11-29 07:20:21 +00:00
<span class="icon-text">
<span class="icon">
2023-02-11 14:52:00 +00:00
<i class="fa-solid fa-xmark"></i>
2022-11-29 07:20:21 +00:00
</span>
</span>
</button>
2023-02-11 14:52:00 +00:00
{% if type == 'page' %}
<a href="{% url 'callbacks' type='page' object_type='signal' object_id=item.id %}"><button
class="button">
<span class="icon-text">
<span class="icon">
<i class="fa-solid fa-eye"></i>
</span>
</span>
</button>
</a>
{% else %}
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-get="{% url 'callbacks' type=type object_type='signal' object_id=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-eye"></i>
</span>
</span>
</button>
{% endif %}
</div>
</td>
</tr>
{% endfor %}
2022-11-29 07:20:21 +00:00
2023-02-11 14:52:00 +00:00
</table>
{% endcache %}