{{ form.hidden_tag() }}

{{ form.instname.label }} {{ form.instname(value="blabla") }}
{{ form.frequency.label }} {{ form.frequency(value="1") }}
{{ form.from_.label }} {{ form.from_(value="1983") }}
{{ form.to_.label }} {{ form.to_(value="1984") }}
{{ form.minsupp.label }} {{ form.minsupp(value="0.0001") }}
{{ form.minfsetsize.label }} {{ form.minfsetsize(value="4") }}
{{ form.minjaccard.label }} {{ form.minjaccard(value="0.2") }}
{{ form.ram.label }} {{ form.ram(value="5g") }}
{{ form.cores.label }} {{ form.cores(value="8") }}
{{ form.csrf_token }}

{% macro render_field(field) %}

{{ field.label }}
{{ field(**kwargs)|safe }} {% if field.errors %} {% endif %}
{% endmacro %}