view sat_templates/default/input/form.html @ 161:bfe72370ca49

install (setup.py): unset zip_safe, as Libervia or jp need to access files and don't handle zip
author Goffi <goffi@goffi.org>
date Sun, 15 Jul 2018 08:56:15 +0200
parents b84d20af0ed3
children
line wrap: on
line source

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