view default/input/form.html @ 136:4eda3d0ddb22

blog (discover): don't display alternative instructions if not disco entities are available (i.e. if the only choice is free jid)
author Goffi <goffi@goffi.org>
date Tue, 27 Mar 2018 08:30:07 +0200
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 %}