{% 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 %} {% if warnings.get("missing_loadsdk") %} {% endif %}
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.label.field_id == "_delay_show" %}
{% endif %} {% if field.widget.input_type == "checkbox" -%}
{{ field() }} {% else -%}
{% if field.label.field_id == "_playback_info" %}     {% endif %} {{ field() }} {% endif -%} {% for error in field.errors -%}
{{ error }}
{% endfor -%} {% if field.description -%} {{ field.description }} {% endif -%}
{% endfor %}
{% endif %}
{% endblock %}