You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
361 B
HTML
17 lines
361 B
HTML
9 years ago
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}
|
||
8 years ago
|
{% trans %}Confirm action{% endtrans %}
|
||
9 years ago
|
{% endblock %}
|
||
|
|
||
|
{% block subtitle %}
|
||
|
{{ action }}
|
||
|
{% endblock %}
|
||
|
|
||
7 years ago
|
{% block content %}
|
||
|
{% call macros.box(theme="warning") %}
|
||
8 years ago
|
<p>{% trans action %}You are about to {{ action }}. Please confirm your action.{% endtrans %}</p>
|
||
9 years ago
|
{{ macros.form(form) }}
|
||
7 years ago
|
{% endcall %}
|
||
9 years ago
|
{% endblock %}
|