{% extends "base.html" %} {% block content %}
Prompts
{% if prompts %}
{% for prompt in prompts %} {% endfor %}
Name Description Model Persona Created Actions
{{ prompt.name }} {{ prompt.description or '-' }} {{ prompt.model|title }} {% if prompt.persona == 'basic_agent' %}Basic {% elif prompt.persona == 'deep_research_agent' %}Research {% elif prompt.persona == 'autonomous_engineer' %}Engineer {% else %}{{ prompt.persona }}{% endif %} {{ prompt.created_at.strftime('%Y-%m-%d %H:%M') }}
{% else %}
No prompts created yet. .
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}