mirror of
https://github.com/simple-login/app.git
synced 2024-11-01 03:21:01 +01:00
cb7868bdca
* Add DJlint configuration * Initial reformat for djlint * Add template linting to CI * Add explanation for HTML template checks in CONTRIBUTING.md
20 lines
524 B
HTML
20 lines
524 B
HTML
{% extends "default.html" %}
|
|
|
|
{% set active_page = "dashboard" %}
|
|
{% block title %}Block a sender{% endblock %}
|
|
{% block default_content %}
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h1 class="h3">Block sender</h1>
|
|
<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 %}
|