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.RiskModel' 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_risk 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>description</th>
|
|
|
|
<th>max loss percent</th>
|
|
|
|
<th>max risk percent</th>
|
|
|
|
<th>max open trades</th>
|
|
|
|
<th>max open trades per symbol</th>
|
2023-02-15 18:15:36 +00:00
|
|
|
<th>max price slippage percent</th>
|
|
|
|
<th>max callback price deviation percent</th>
|
2023-02-11 14:52:00 +00:00
|
|
|
<th>actions</th>
|
|
|
|
</thead>
|
|
|
|
{% for item in object_list %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ item.id }}</td>
|
|
|
|
<td>{{ item.user }}</td>
|
|
|
|
<td>{{ item.name }}</td>
|
|
|
|
<td>{{ item.description }}</td>
|
|
|
|
<td>{{ item.max_loss_percent }}</td>
|
|
|
|
<td>{{ item.max_risk_percent }}</td>
|
|
|
|
<td>{{ item.max_open_trades }}</td>
|
|
|
|
<td>{{ item.max_open_trades_per_symbol }}</td>
|
2023-02-15 18:15:36 +00:00
|
|
|
<td>{{ item.price_slippage_percent }}</td>
|
|
|
|
<td>{{ item.callback_price_deviation_percent }}</td>
|
2023-02-11 14:52:00 +00:00
|
|
|
<td>
|
|
|
|
<div class="buttons">
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-get="{% url 'risk_update' type=type pk=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-pencil"></i>
|
|
|
|
</span>
|
2022-12-13 07:20:49 +00:00
|
|
|
</span>
|
2023-02-11 14:52:00 +00:00
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-delete="{% url 'risk_delete' type=type pk=item.id %}"
|
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#modals-here"
|
|
|
|
hx-swap="innerHTML"
|
|
|
|
hx-confirm="Are you sure you wish to delete {{ item.name }}?"
|
|
|
|
class="button">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-xmark"></i>
|
|
|
|
</span>
|
2022-12-13 07:20:49 +00:00
|
|
|
</span>
|
2023-02-11 14:52:00 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2022-12-13 07:20:49 +00:00
|
|
|
|
2023-02-11 14:52:00 +00:00
|
|
|
</table>
|
|
|
|
{% endcache %}
|