view default/input/form.html @ 100:61bf2ae16577

css (blog): min/max height adjustment, to make tags clickable without expanding the blog item
author Goffi <goffi@goffi.org>
date Sun, 21 Jan 2018 20:26:15 +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 %}