view default/input/form.html @ 95:e4ffb56efd4e

blog/articles: if only one item is shown, use it's title or content as page title.
author Goffi <goffi@goffi.org>
date Fri, 19 Jan 2018 18:17:06 +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 %}