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.Trade' 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_trades 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>status</th>
|
|
|
|
<th>account id</th>
|
|
|
|
<th>symbol</th>
|
|
|
|
<th>type</th>
|
|
|
|
<th>amount</th>
|
|
|
|
<th>price</th>
|
|
|
|
<th>SL</th>
|
|
|
|
<th>TL</th>
|
|
|
|
<th>actions</th>
|
|
|
|
</thead>
|
|
|
|
{% for item in object_list %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ item.id }}</td>
|
|
|
|
<td>{{ item.status }}</td>
|
|
|
|
<td>{{ item.account.id }}</td>
|
|
|
|
<td>{{ item.symbol }}</td>
|
|
|
|
<td>{{ item.type }}</td>
|
|
|
|
<td>{{ item.amount }}</td>
|
|
|
|
<td>{{ item.price }}</td>
|
|
|
|
<td>{{ item.stop_loss }}</td>
|
|
|
|
<td>{{ item.take_profit }}</td>
|
|
|
|
<td>
|
|
|
|
<div class="buttons">
|
2022-10-17 17:56:16 +00:00
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
2023-02-11 14:52:00 +00:00
|
|
|
hx-get="{% url 'trade_update' type=type pk=item.id %}"
|
2022-10-17 17:56:16 +00:00
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
2022-10-29 13:24:09 +00:00
|
|
|
hx-swap="innerHTML"
|
2022-12-08 07:20:46 +00:00
|
|
|
class="button">
|
2022-10-17 17:56:16 +00:00
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
2023-02-11 14:52:00 +00:00
|
|
|
<i class="fa-solid fa-pencil"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-delete="{% url 'trade_delete' type=type pk=item.id %}"
|
|
|
|
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>
|
2022-10-17 17:56:16 +00:00
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
2023-02-11 14:52:00 +00:00
|
|
|
{% if type == 'page' %}
|
|
|
|
<a href="{% url 'trade_action' type=type trade_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 'trade_action' type=type account_id=item.account.id trade_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-10-17 17:56:16 +00:00
|
|
|
|
2023-02-11 14:52:00 +00:00
|
|
|
</table>
|
|
|
|
{% endcache %}
|