mirror of
https://github.com/simple-login/app.git
synced 2024-11-17 22:21:38 +08:00
15 lines
429 B
HTML
15 lines
429 B
HTML
|
<button
|
||
|
class="ml-2 btn btn-sm {% if contact.block_forward %} btn-outline-success {% else %} btn-outline-warning {% endif %}"
|
||
|
hx-post="{{ url_for('dashboard.toggle_contact', contact_id=contact.id) }}" hx-swap="outerHTML">
|
||
|
{% if contact.block_forward %}
|
||
|
Unblock sender
|
||
|
{% else %}
|
||
|
Block sender
|
||
|
{% endif %}
|
||
|
</button>
|
||
|
|
||
|
{% if toast_msg %}
|
||
|
<script>
|
||
|
toastr.success("{{ toast_msg }}");
|
||
|
</script>
|
||
|
{% endif %}
|