{% extends "layout.html" %} {% block content %}
{{ form.hidden_tag() }} {% if survey_id %}
Back
{% endif %}
{% if form.title.errors %} {{ form.title(class="form-control is-invalid") }}
{% for error in form.title.errors %} {{ error }} {% endfor %}
{% else %} {{ form.title(class="form-control", placeholder="Enter title") }} {% endif %}
Proceed to home {{ form.submit(class="btn btn-primary") }}
Click on cells to edit data
New rows will be generated as you enter

Click here to add your first column

{% endblock content %}