{% extends 'base.html' %} {% block title %}Manage Templates - Feature Implementation Prompt Generator{% endblock %} {% block content %}

Manage Templates

{% if templates %}
{% for template in templates %} {% endfor %}
Name Description Status Last Updated Actions
{{ template.name }} {{ template.description or 'No description' }} {% if template.id == default_template_id %} Default {% else %} {% endif %} {{ template.updated_at }} {% if template.id != default_template_id %} {% endif %}
{% else %}

No templates found. Click "Create New Template" to get started.

{% endif %}
{% endblock %} {% block modals %} {% endblock %} {% block additional_scripts %} {% endblock %}