improve UI for block/unblock sender

This commit is contained in:
Son 2021-11-03 12:36:20 +01:00
parent 014b7d5b1f
commit fd24f6eb1b
1 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
<button
class="ml-2 btn btn-sm {% if contact.block_forward %} btn-outline-success {% else %} btn-outline-warning {% endif %}"
class="btn btn-sm {% if contact.block_forward %} text-primary {% else %} text-warning {% endif %}"
hx-post="{{ url_for('dashboard.toggle_contact', contact_id=contact.id) }}" hx-swap="outerHTML">
{% if contact.block_forward %}
Unblock sender
<i class="fe fe-play-circle" data-toggle="tooltip" title="Unblock sender"></i>
{% else %}
Block sender
<i class="fe fe-pause-circle" data-toggle="tooltip" title="Block sender"></i>
{% endif %}
</button>