app-MAIL-temp/templates/partials/toggle_contact.html

15 lines
539 B
HTML
Raw Normal View History

<button
2021-11-03 12:36:20 +01:00
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 %}
2021-11-03 12:36:20 +01:00
<i class="fe fe-play-circle" data-toggle="tooltip" title="Unblock sender"></i>
{% else %}
2021-11-03 12:36:20 +01:00
<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 %}