Mercurial > libervia-templates
view sat_templates/default/input/form.html @ 154:80cf52fbcc40
events: added admin, create and overview templates
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 21 Jun 2018 01:11:07 +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 %}