{% extends "layout.html" %} {% block content %} {{ form.hidden_tag() }} {{ form.enough_graphs.label() }} {% if form.enough_graphs.errors %} {{ form.enough_graphs(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.enough_graphs.errors %} {{ error }} {% endfor %} {% else %} {{ form.enough_graphs(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.good_graphs.label() }} {% if form.good_graphs.errors %} {{ form.good_graphs(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.good_graphs.errors %} {{ error }} {% endfor %} {% else %} {{ form.good_graphs(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.enough_tests.label() }} {% if form.enough_tests.errors %} {{ form.enough_tests(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.enough_tests.errors %} {{ error }} {% endfor %} {% else %} {{ form.enough_tests(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.auto_tests.label() }} {% if form.auto_tests.errors %} {{ form.auto_tests(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.auto_tests.errors %} {{ error }} {% endfor %} {% else %} {{ form.auto_tests(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.navigation.label() }} {% if form.navigation.errors %} {{ form.navigation(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.navigation.errors %} {{ error }} {% endfor %} {% else %} {{ form.navigation(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.data_input.label() }} {% if form.data_input.errors %} {{ form.data_input(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.data_input.errors %} {{ error }} {% endfor %} {% else %} {{ form.data_input(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.export.label() }} {% if form.export.errors %} {{ form.export(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.export.errors %} {{ error }} {% endfor %} {% else %} {{ form.export(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.effort.label() }} {% if form.effort.errors %} {{ form.effort(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.effort.errors %} {{ error }} {% endfor %} {% else %} {{ form.effort(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.future_use.label() }} {% if form.future_use.errors %} {{ form.future_use(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.future_use.errors %} {{ error }} {% endfor %} {% else %} {{ form.future_use(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.user_interface.label() }} {% if form.user_interface.errors %} {{ form.user_interface(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.user_interface.errors %} {{ error }} {% endfor %} {% else %} {{ form.user_interface(class="list-unstyled d-flex justify-content-between mr-1") }} {% endif %} {{ form.functionality.label() }} {% if form.functionality.errors %} {{ form.functionality(class="list-unstyled d-flex justify-content-between mr-1") }} {% for error in form.functionality.errors %} {{ error }} {% endfor %} {% else %} {{ form.functionality(class="list-unstyled d-flex justify-content-between") }} {% endif %} {{ form.comments.label() }} {% if form.comments.errors %} {{ form.comments(class="form-control", rows=3) }} {% for error in form.comments.errors %} {{ error }} {% endfor %} {% else %} {{ form.comments(class="form-control bg-light", rows=3) }} {% endif %} {{ form.submit(class="btn btn-primary align-self-center") }} {% endblock content %}