2022-10-17 17:56:16 +00:00
|
|
|
{% include 'partials/notify.html' %}
|
|
|
|
|
|
|
|
<table class="table is-fullwidth is-hoverable" id="accounts-table">
|
|
|
|
<thead>
|
|
|
|
<th>id</th>
|
|
|
|
<th>user</th>
|
|
|
|
<th>name</th>
|
|
|
|
<th>exchange</th>
|
|
|
|
<th>API key</th>
|
2022-10-17 06:20:30 +00:00
|
|
|
<th>sandbox</th>
|
2022-10-17 17:56:16 +00:00
|
|
|
<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>
|
2022-10-17 06:20:30 +00:00
|
|
|
<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>
|
2022-10-17 17:56:16 +00:00
|
|
|
<td>
|
|
|
|
<div class="buttons">
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-get="{% url 'account_action' type=type account_id=item.id %}"
|
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
|
|
|
class="button is-info">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-pencil"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
|
|
|
|
hx-delete="{% url 'account_action' type=type account_id=item.id %}"
|
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#accounts-table"
|
|
|
|
class="button is-danger">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-trash"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
{% if type == 'page' %}
|
2022-10-21 22:57:32 +00:00
|
|
|
<a href="{% url 'account_info' type=type account_id=item.id %}"><button
|
2022-10-17 17:56:16 +00:00
|
|
|
class="button is-success">
|
|
|
|
<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 }}"}'
|
2022-10-21 22:57:32 +00:00
|
|
|
hx-get="{% url 'account_info' type=type account_id=item.id %}"
|
2022-10-17 17:56:16 +00:00
|
|
|
hx-trigger="click"
|
|
|
|
hx-target="#{{ type }}s-here"
|
|
|
|
class="button is-success">
|
|
|
|
<span class="icon-text">
|
|
|
|
<span class="icon">
|
|
|
|
<i class="fa-solid fa-eye"></i>
|
|
|
|
</span>
|
|
|
|
</span>
|
|
|
|
</button>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</table>
|