view sat_templates/templates/bulma/input/form.html @ 346:a9cc406ef7c6

i18n: Update translation files Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: Libervia/templates Translate-URL: https://salut-a-toi.org/weblate/projects/libervia/templates/
author Weblate <noreply@weblate.org>
date Wed, 16 Jun 2021 14:33:01 +0000
parents fbea1b9a558f
children
line wrap: on
line source

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