{%- extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/utils.html" as utils %} {% block title %}co2mpas-stamper{% endblock %} {%- block content -%}

co2mpas web stamper

{%- set button_map = { 'check': 'primary', 'submit': 'success', }-%} {%- set form_type = "basic" -%}
{{ wtf.form_field(form.sender, form_type=form_type) }}
{{ wtf.form_field(form.stamp_recipients, form_type=form_type) }}
{{ wtf.form_field(form.dice_report, form_type=form_type) }}
{{ wtf.form_errors(form, hiddens='only') }}
{{ form.hidden_tag() }}
{{ wtf.form_field(form.repeat_dice, form_type=form_type) }}
{{ wtf.form_field(form.check, form_type=form_type, button_map=button_map) }} {{ wtf.form_field(form.submit, form_type=form_type, button_map=button_map) }} 3: New stamp...
{{utils.flashed_messages(messages)}} {%- endblock %}