Implement viewing open positions
This commit is contained in:
@@ -1,38 +1,33 @@
|
||||
{% include 'partials/notify.html' %}
|
||||
|
||||
<table class="table is-fullwidth is-hoverable" id="accounts-table">
|
||||
<table class="table is-fullwidth is-hoverable" id="positions-table">
|
||||
<thead>
|
||||
<th>id</th>
|
||||
<th>user</th>
|
||||
<th>name</th>
|
||||
<th>exchange</th>
|
||||
<th>API key</th>
|
||||
<th>sandbox</th>
|
||||
<th>account</th>
|
||||
<th>asset</th>
|
||||
<th>price</th>
|
||||
<th>quantity</th>
|
||||
<th>value</th>
|
||||
<th>P/L</th>
|
||||
<th>side</th>
|
||||
<th>actions</th>
|
||||
</thead>
|
||||
{% for item in items %}
|
||||
<tr>
|
||||
<td>{{ item.id }}</td>
|
||||
<td>{{ item.user }}</td>
|
||||
<td>{{ item.name }}</td>
|
||||
<td>{{ item.exchange }}</td>
|
||||
<td>{{ item.api_key }}</td>
|
||||
<td>
|
||||
{% if item.sandbox %}
|
||||
<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>
|
||||
<tr class="
|
||||
{% if item.unrealized_pl > 0 %}has-background-success-light
|
||||
{% elif item.unrealized_pl < 0 %}has-background-danger-light
|
||||
{% endif %}">
|
||||
<td>{{ item.account_id }}</td>
|
||||
<td>{{ item.symbol }}</td>
|
||||
<td>{{ item.current_price }}</td>
|
||||
<td>{{ item.qty }}</td>
|
||||
<td>{{ item.market_value }}</td>
|
||||
<td>{{ item.unrealized_pl }}</td>
|
||||
<td>{{ item.side }}</td>
|
||||
<td>
|
||||
<div class="buttons">
|
||||
<button
|
||||
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||||
hx-get="{% url 'position_action' type=type order_id=item.id %}"
|
||||
hx-get="#trade-edit"
|
||||
hx-trigger="click"
|
||||
hx-target="#{{ type }}s-here"
|
||||
class="button is-info">
|
||||
@@ -44,30 +39,31 @@
|
||||
</button>
|
||||
<button
|
||||
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||||
hx-delete="{% url 'position_action' type=type order_id=item.id %}"
|
||||
hx-delete="#trade-close-confirm"
|
||||
hx-trigger="click"
|
||||
hx-target="#positions-table"
|
||||
hx-target="#accounts-table"
|
||||
class="button is-danger">
|
||||
<span class="icon-text">
|
||||
<span class="icon" data-tooltip="Close">
|
||||
<span class="icon">
|
||||
<i class="fa-solid fa-trash"></i>
|
||||
</span>
|
||||
</span>
|
||||
</button>
|
||||
{% if type == 'page' %}
|
||||
<a href="{% url 'position_action' type=type account_id=item.id %}"><button
|
||||
class="button is-success">
|
||||
<span class="icon-text">
|
||||
<span class="icon">
|
||||
<i class="fa-solid fa-eye"></i>
|
||||
<a href="#trade-info">
|
||||
<button
|
||||
class="button is-success">
|
||||
<span class="icon-text">
|
||||
<span class="icon">
|
||||
<i class="fa-solid fa-eye"></i>
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</button>
|
||||
</button>
|
||||
</a>
|
||||
{% else %}
|
||||
<button
|
||||
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||||
hx-get="{% url 'trades' type=type account_id=item.id %}"
|
||||
hx-get="#trade-info"
|
||||
hx-trigger="click"
|
||||
hx-target="#{{ type }}s-here"
|
||||
class="button is-success">
|
||||
|
||||
Reference in New Issue
Block a user