mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
17 lines
361 B
HTML
17 lines
361 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{% trans %}Confirm action{% endtrans %}
|
|
{% endblock %}
|
|
|
|
{% block subtitle %}
|
|
{{ action }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% call macros.box(theme="warning") %}
|
|
<p>{% trans action %}You are about to {{ action }}. Please confirm your action.{% endtrans %}</p>
|
|
{{ macros.form(form) }}
|
|
{% endcall %}
|
|
{% endblock %}
|