{% extends "base.html" %} {% block title %}Edit Form Template – Echo{% endblock %} {% block content %}

Edit Form Template

{% if template %}

Template Name: {{ template.name }}

{% endif %}
Back to Menu
{% if not template %}

Template not found.

{% else %}

Template Details

Existing Fields

{% if fields and fields|length > 0 %} {% for f in fields %} {% endfor %}
Position Question Type Required Actions
{{ f.position or loop.index0 }} {{ f.question_text }} {{ f.type }} {{ 'Yes' if f.required else 'No' }} Edit Delete
{% else %}
Form

No fields yet

Add fields to build this form.

{% endif %}
{% endif %}
Cancel Preview
{% endblock %} {% block scripts %} {% endblock %}