{% extends "base.html" %} {% block title %}Request an estimation of your travel footprint{% endblock %} {% block hero %}

{{ content.estimate.hero.title | safe }}

{{ content.estimate.hero.description | markdown | safe }}

{% endblock %} {% macro render_field(field) %}
{{ field.label }} {% if not field.flags.optional %} * {% endif %}
{{ field(title=field.description, class_="form-control", **kwargs) | safe }} {% if field.errors -%} {%- endif %}
{% endmacro %} {% macro render_checkbox(field) %} {{ field(class="form-check-input") }} {{ field.label( class="form-check-label", title=field.description ) }} {% endmacro %} {% block body %}
{{ form.hidden_tag() }} {#
#} {# {{ render_field(form.email) }}#} {# We will never share your email with anyone.#} {#
#}
{{ render_field(form.first_name) }} Please fill these as a courtesy to us.
{{ render_field(form.last_name) }} We will never share your data with anyone.
{{ render_field(form.institution) }}
{{ render_field(form.origin_addresses) }}
{{ render_field(form.destination_addresses) }}
{{ render_checkbox(form.compute_optimal_destination) }}
{{ render_checkbox(form.use_atmosfair_rfi) }} Disabled. Work in Progress. RFI=1.9
{{ render_field(form.comment) }}
{% endblock %}