{% extends "base.html" %} {% block content %}
Preview App
{% if exceptions %}
Validation Error

{% for error in exceptions %} {% if error.error %}
{{ error.error }}
{% else %}
{{ error }}
{% endif %} {% endfor %} {% else %}
App Info

Name :
{{ title }}

App Options

The user of this app will be able to configure the following options.

{% for field in form -%} {% if field.widget.input_type == "checkbox" -%}
{{ field() }} {% else -%}
{{ field() }} {% endif -%} {% for error in field.errors -%}
{{ error }}
{% endfor -%} {% if field.description -%} {{ field.description }} {% endif -%}
{% endfor %} {% endif %}
{% endblock %}