20 lines
497 B
HTML
20 lines
497 B
HTML
<div class="buttons">
|
|
<button
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
hx-get="{% url 'trade_action' type=type %}"
|
|
hx-trigger="click"
|
|
hx-target="#modals-here"
|
|
class="button is-info">
|
|
<span class="icon-text">
|
|
<span class="icon">
|
|
<i class="fa-solid fa-plus"></i>
|
|
</span>
|
|
<span>Trade</span>
|
|
</span>
|
|
</button>
|
|
</div>
|
|
|
|
{% include 'partials/notify.html' %}
|
|
{% include 'partials/trade-list.html' %}
|
|
|
|
|