{% extends "base.html" %} {% block title %}Submission Forms Menu – Echo 1.1{% endblock %} {% block content %}

Submission Form Menu

Back to Dashboard
Form Icon
Create Form
Start a new template

Existing Templates

{% if templates and templates|length > 0 %}
{% for t in templates %} {% set st = (t.status.value if t.status else 'draft') %} {% set is_published = (st == 'published') %}
Form Icon
{{ t.name }} {{ st|capitalize }}
Updated {{ t.updated_at.strftime('%Y-%m-%d %H:%M') if t.updated_at else '—' }}
Edit
{% endfor %}
{% else %}

No templates yet. Click “Create Form” to add one.

{% endif %}
{% endblock %}