view default/input/form.html @ 65:dd15b6c0b1d3

input/xmlui: added 'jid' widget type, using string_widget for now
author Goffi <goffi@goffi.org>
date Wed, 15 Nov 2017 08:52:14 +0100
parents 87680eed9e25
children
line wrap: on
line source

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