4.21.3
This commit is contained in:
12
app/templates/partials/toggle_contact.html
Normal file
12
app/templates/partials/toggle_contact.html
Normal file
@ -0,0 +1,12 @@
|
||||
<button 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 %}
|
||||
|
||||
<i class="fe fe-play-circle"
|
||||
data-toggle="tooltip"
|
||||
title="Unblock sender"></i>
|
||||
{% else %}
|
||||
<i class="fe fe-pause-circle" data-toggle="tooltip" title="Block sender"></i>
|
||||
{% endif %}
|
||||
</button>
|
||||
{% if toast_msg %}<script>toastr.success("{{ toast_msg }}");</script>{% endif %}
|
Reference in New Issue
Block a user