2016-08-19 10:36:13 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
2016-10-02 14:43:48 +02:00
|
|
|
{% trans %}Confirm action{% endtrans %}
|
2016-08-19 10:36:13 +02:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block subtitle %}
|
|
|
|
{{ action }}
|
|
|
|
{% endblock %}
|
|
|
|
|
2017-10-29 18:53:48 +02:00
|
|
|
{% block content %}
|
|
|
|
{% call macros.box(theme="warning") %}
|
2016-10-02 14:43:48 +02:00
|
|
|
<p>{% trans action %}You are about to {{ action }}. Please confirm your action.{% endtrans %}</p>
|
2016-08-19 10:36:13 +02:00
|
|
|
{{ macros.form(form) }}
|
2017-10-29 18:53:48 +02:00
|
|
|
{% endcall %}
|
2016-08-19 10:36:13 +02:00
|
|
|
{% endblock %}
|