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 %}
|
2023-02-10 20:49:35 +00:00
|
|
|
{% include 'mixins/partials/notify.html' %}
|
2023-02-15 07:20:53 +00:00
|
|
|
{% cache 600 objects_strategies 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>
|
2023-02-15 18:44:19 +00:00
|
|
|
<th>user</th>
|
2023-02-11 14:52:00 +00:00
|
|
|
<th>name</th>
|
|
|
|
<th>description</th>
|
|
|
|
<th>account</th>
|
2023-02-15 20:04:23 +00:00
|
|
|
<th>signal trading</th>
|
|
|
|
<th>active management</th>
|
2023-02-11 14:52:00 +00:00
|
|
|
<th>enabled</th>
|
|
|
|
<th>actions</th>
|
|
|
|
</thead>
|
|
|
|
{% for item in object_list %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ item.id }}</td>
|
2023-02-15 18:44:19 +00:00
|
|
|
<td>{{ item.user }}</td>
|
2023-02-11 14:52:00 +00:00
|
|
|
<td>{{ item.name }}</td>
|
|
|
|
<td>{{ item.description|truncatechars:80 }}</td>
|
|
|
|
<td>{{ item.account }}</td>
|
2023-02-15 20:04:23 +00:00
|
|
|
<td>
|
|
|
|
{% if item.signal_trading_enabled %}
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-check"></i>
|
|
|
|
</span>
|
|
|
|
{% else %}
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-xmark"></i>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{% if item.active_management_enabled %}
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-check"></i>
|
|
|
|
</span>
|
|
|
|
{% else %}
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-xmark"></i>
|
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
</td>
|
2023-02-11 14:52:00 +00:00
|
|
|
<td>
|
|
|
|
{% if item.enabled %}
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-check"></i>
|
2022-10-27 17:08:40 +00:00
|
|
|
</span>
|
2023-02-11 14:52:00 +00:00
|
|
|
{% else %}
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-xmark"></i>
|
2022-10-27 17:08:40 +00:00
|
|
|
</span>
|
2023-02-11 14:52:00 +00:00
|
|
|
{% endif %}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<div class="buttons">
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-get="{% url 'strategy_update' type=type pk=item.id %}"
|
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
|
|
|
hx-swap="innerHTML"
|
2022-12-08 07:20:46 +00:00
|
|
|
class="button">
|
2022-10-27 17:08:40 +00:00
|
|
|
<span class="icon-text">
|
2023-02-11 14:52:00 +00:00
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-pencil"></i>
|
2022-10-27 17:08:40 +00:00
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
2023-02-11 14:52:00 +00:00
|
|
|
hx-delete="{% url 'strategy_delete' type=type pk=item.id %}"
|
2022-10-27 17:08:40 +00:00
|
|
|
hx-trigger="click"
|
2023-02-11 14:52:00 +00:00
|
|
|
hx-target="#modals-here"
|
2022-10-29 13:24:09 +00:00
|
|
|
hx-swap="innerHTML"
|
2023-02-11 14:52:00 +00:00
|
|
|
hx-confirm="Are you sure you wish to delete {{ item.name }}?"
|
2022-12-08 07:20:46 +00:00
|
|
|
class="button">
|
2022-10-27 17:08:40 +00:00
|
|
|
<span class="icon-text">
|
2023-02-11 14:52:00 +00:00
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-xmark"></i>
|
2022-10-27 17:08:40 +00:00
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
2023-02-11 14:52:00 +00:00
|
|
|
{% if type == 'page' %}
|
|
|
|
<a href="{% url 'trenddirections' type=type strategy_id=item.id %}"><button
|
|
|
|
class="button">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon" data-tooltip="View trends">
|
|
|
|
<i class="fa-solid fa-arrows-up-down"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-get="{% url 'trenddirections' type=type strategy_id=item.id %}"
|
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
|
|
|
hx-swap="innerHTML"
|
|
|
|
class="button">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon" data-tooltip="View trends">
|
|
|
|
<i class="fa-solid fa-arrows-up-down"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2022-10-27 17:08:40 +00:00
|
|
|
|
2023-02-11 14:52:00 +00:00
|
|
|
</table>
|
|
|
|
{% endcache %}
|