2022-06-29 11:28:26 +02:00
|
|
|
{% extends "default.html" %}
|
2021-11-02 15:30:18 +01:00
|
|
|
|
|
|
|
{% set active_page = "dashboard" %}
|
2022-06-29 11:28:26 +02:00
|
|
|
{% block title %}Block a sender{% endblock %}
|
2021-11-02 15:30:18 +01:00
|
|
|
{% block default_content %}
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-body">
|
2022-06-29 11:28:26 +02:00
|
|
|
<h1 class="h3">Block sender</h1>
|
2021-11-02 15:30:18 +01:00
|
|
|
<p>
|
|
|
|
You are about to block the sender <b>{{ contact.website_email }}</b> from sending emails to
|
|
|
|
<b>{{ contact.alias.email }}</b>
|
|
|
|
</p>
|
|
|
|
<form method="post">
|
|
|
|
<button class="btn btn-warning">Confirm</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|