view default/input/form.html @ 39:9abef4a23af0

base/base: a confirm message is displayed on top of page when confirm is set
author Goffi <goffi@goffi.org>
date Tue, 11 Jul 2017 07:47:59 +0200
parents eb9a42fca6c8
children 87680eed9e25
line wrap: on
line source

{% macro form(action='') %}
<form method="post" action="{{action}}">
    {% if csrf_token is defined %}
        <input type="hidden" name="csrf_token" value="{{csrf_token}}">
    {% endif %}
    {{ caller() }}
</form>
{% endmacro %}