view default/input/field.html @ 18:d4a8afa7b590

input/field: <label> is separated from <input>
author Goffi <goffi@goffi.org>
date Thu, 04 May 2017 01:00:29 +0200
parents 8b5615a1bf3d
children 8fa2fd2e928e
line wrap: on
line source

{% macro choices(name, choices_list, checked=none) %}
    {% for choice in choices_list %}
        <div class="form_input">
            <input id="{{'field'|next_gidx}}" type="radio" name="{{name}}" value="{{choice}}"{{" checked" if checked==choice}}><label for="{{'field'|cur_gidx}}">{{choice}}</label>
        </div>
    {% endfor %}
{% endmacro %}

{% macro int(name, label="", init=0) %}
    <span class="form_input">
        <label id="{{'field'|next_gidx}}">{{label}}</label><input id="{{'field'|cur_gidx}}" type="number" name="{{name}}" value="{{init}}" step="1" min="0"></label>
    </span>
{% endmacro %}

{% macro meta(name, value) %}
    <input type="hidden" name="{{name}}" value="{{value}}">
{% endmacro %}

{% macro submit() %}
    <input type="submit" value="Send">
{% endmacro %}