2022-10-27 17:08:40 +00:00
|
|
|
{% include 'partials/notify.html' %}
|
|
|
|
|
2022-10-29 13:05:01 +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 }}">
|
2022-10-27 17:08:40 +00:00
|
|
|
<thead>
|
|
|
|
<th>id</th>
|
|
|
|
<th>name</th>
|
|
|
|
<th>description</th>
|
|
|
|
<th>account</th>
|
|
|
|
<th>enabled</th>
|
|
|
|
<th>TP</th>
|
|
|
|
<th>SL</th>
|
|
|
|
<th>actions</th>
|
|
|
|
</thead>
|
2022-10-29 11:43:13 +00:00
|
|
|
{% for item in object_list %}
|
2022-10-27 17:08:40 +00:00
|
|
|
<tr>
|
|
|
|
<td>{{ item.id }}</td>
|
|
|
|
<td>{{ item.name }}</td>
|
|
|
|
<td>{{ item.description }}</td>
|
|
|
|
<td>{{ item.account }}</td>
|
|
|
|
<td>
|
|
|
|
{% if item.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>{{ item.take_profit_percent }}</td>
|
|
|
|
<td>{{ item.stop_loss_percent }}</td>
|
|
|
|
<td>
|
|
|
|
<div class="buttons">
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-get="{% url 'strategy_update' type=type pk=item.id %}"
|
2022-10-27 17:08:40 +00:00
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
2022-10-29 13:05:01 +00:00
|
|
|
hx-swap="innerHTML"
|
2022-10-27 17:08:40 +00:00
|
|
|
class="button is-info">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-pencil"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-delete="{% url 'strategy_delete' type=type pk=item.id %}"
|
2022-10-27 17:08:40 +00:00
|
|
|
hx-trigger="click"
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-target="#modals-here"
|
2022-10-29 13:05:01 +00:00
|
|
|
hx-swap="innerHTML"
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-confirm="Are you sure you wish to delete {{ item.name }}?"
|
2022-10-27 17:08:40 +00:00
|
|
|
class="button is-danger">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-trash"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
{% if type == 'page' %}
|
2022-10-29 11:43:13 +00:00
|
|
|
<a href="#"><button
|
2022-10-27 17:08:40 +00:00
|
|
|
class="button is-success">
|
|
|
|
<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 }}"}'
|
2022-10-29 11:43:13 +00:00
|
|
|
hx-get="#"
|
2022-10-27 17:08:40 +00:00
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
2022-10-29 13:24:09 +00:00
|
|
|
hx-swap="innerHTML"
|
2022-10-27 17:08:40 +00:00
|
|
|
class="button is-success">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-eye"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</table>
|