Implement viewing and altering trends
This commit is contained in:
@@ -65,12 +65,12 @@
|
||||
</span>
|
||||
</span>
|
||||
</button>
|
||||
<!-- {% if type == 'page' %}
|
||||
<a href="#"><button
|
||||
{% if type == 'page' %}
|
||||
<a href="{% url 'trenddirections' type=type strategy_id=item.id %}"><button
|
||||
class="button">
|
||||
<span class="icon-text">
|
||||
<span class="icon">
|
||||
<i class="fa-solid fa-eye"></i>
|
||||
<span class="icon" data-tooltip="View trends">
|
||||
<i class="fa-solid fa-arrows-up-down"></i>
|
||||
</span>
|
||||
</span>
|
||||
</button>
|
||||
@@ -78,18 +78,18 @@
|
||||
{% else %}
|
||||
<button
|
||||
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||||
hx-get="#"
|
||||
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">
|
||||
<i class="fa-solid fa-eye"></i>
|
||||
<span class="icon" data-tooltip="View trends">
|
||||
<i class="fa-solid fa-arrows-up-down"></i>
|
||||
</span>
|
||||
</span>
|
||||
</button>
|
||||
{% endif %} -->
|
||||
{% endif %}
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
55
core/templates/partials/trend-direction-list.html
Normal file
55
core/templates/partials/trend-direction-list.html
Normal file
@@ -0,0 +1,55 @@
|
||||
{% include 'partials/notify.html' %}
|
||||
|
||||
<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>symbol</th>
|
||||
<th>direction</th>
|
||||
<th>actions</th>
|
||||
</thead>
|
||||
{% for key, item in object_list.items %}
|
||||
<tr class="
|
||||
{% if item == 'buy' %}has-background-success-light
|
||||
{% elif item == 'sell' %}has-background-danger-light
|
||||
{% endif %}">
|
||||
<td>{{ key }}</td>
|
||||
<td>{{ item }}</td>
|
||||
<td>
|
||||
<div class="buttons">
|
||||
<button
|
||||
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||||
hx-get="{% url 'trenddirection_flip' strategy_id=strategy_id symbol=key %}"
|
||||
hx-trigger="click"
|
||||
hx-target="#modals-here"
|
||||
hx-swap="innerHTML"
|
||||
class="button">
|
||||
<span class="icon-text">
|
||||
<span class="icon" data-tooltip="Flip direction">
|
||||
<i class="fa-solid fa-arrows-repeat"></i>
|
||||
</span>
|
||||
</span>
|
||||
</button>
|
||||
<button
|
||||
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
||||
hx-delete="{% url 'trenddirection_delete' strategy_id=strategy_id symbol=key %}"
|
||||
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>
|
||||
</span>
|
||||
</span>
|
||||
</button>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
||||
</table>
|
||||
Reference in New Issue
Block a user