fisk/core/templates/partials/trend-direction-list.html

59 lines
2.0 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.Strategy' as last %}
{% include 'mixins/partials/notify.html' %}
2023-02-11 17:22:25 +00:00
{% cache 600 objects_trenddirections request.user.id object_list 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>symbol</th>
<th>direction</th>
<th>actions</th>
</thead>
{% for key, item in object_list.items %}
<tr class="
{% if item == 'buy' %}has-background-success-light
{% elif item == 'sell' %}has-background-danger-light
{% endif %}">
<td>{{ key }}</td>
<td>{{ item }}</td>
<td>
<div class="buttons">
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-get="{% url 'trenddirection_flip' strategy_id=strategy_id symbol=key %}"
hx-trigger="click"
hx-target="#modals-here"
hx-swap="innerHTML"
class="button">
<span class="icon-text">
<span class="icon" data-tooltip="Flip direction">
<i class="fa-solid fa-arrows-repeat"></i>
</span>
2022-12-18 15:10:28 +00:00
</span>
2023-02-11 14:52:00 +00:00
</button>
<button
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-delete="{% url 'trenddirection_delete' strategy_id=strategy_id symbol=key %}"
hx-trigger="click"
hx-target="#modals-here"
hx-swap="innerHTML"
class="button">
<span class="icon-text">
<span class="icon">
<i class="fa-solid fa-xmark"></i>
</span>
2022-12-18 15:10:28 +00:00
</span>
2023-02-11 14:52:00 +00:00
</button>
</div>
</td>
</tr>
{% endfor %}
2022-12-18 15:10:28 +00:00
2023-02-11 14:52:00 +00:00
</table>
{% endcache %}