Files
notifications-admin/app/templates/components/form.html

27 lines
628 B
HTML
Raw Normal View History

{% macro form_wrapper(
method="post",
action=None,
autocomplete=False,
class=None,
id=None,
module=None,
data_kwargs={}
) %}
<form
method="{{ method }}"
{% if action %}action="{{ action }}"{% endif %}
{% if not autocomplete %}autocomplete="off"{% endif %}
{% if class %}class="{{ class }}"{% endif %}
{% if id %}id="{{ id }}"{% endif %}
{% if module %}data-module="{{ module }}"{% endif %}
{% for key, val in data_kwargs.items() %}
{% if val %}
data-{{ key }}="{{ val }}"
{% endif %}
{% endfor %}
novalidate
>
{{ caller() }}
</form>
{% endmacro %}