Add enabled checkbox to account list
This commit is contained in:
parent
b31a2d1464
commit
b2361bda77
|
@ -15,6 +15,7 @@
|
|||
<th>currency</th>
|
||||
<th>API key</th>
|
||||
<th>sandbox</th>
|
||||
<th>enabled</th>
|
||||
<th>actions</th>
|
||||
</thead>
|
||||
{% for item in object_list %}
|
||||
|
@ -36,6 +37,17 @@
|
|||
</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{% if item.enabled %}
|
||||
<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>
|
||||
<td>
|
||||
<div class="buttons">
|
||||
<button
|
||||
|
|
Loading…
Reference in New Issue