{% extends "layouts/base.html" %} {% block main_content %}

{{ i18n.t('nav.prompts') }}

{{ i18n.t('prompt.manage_desc') }}

{{ i18n.t('prompt.create_new') }}
{% if prompts %}
    {% for prompt in prompts %}
  • {{ prompt.name }}

    {{ prompt.category }} {% if prompt.tags %} {% for tag in prompt.tags[:3] %} {{ tag }} {% endfor %} {% if prompt.tags|length > 3 %} +{{ prompt.tags|length - 3 }} more {% endif %} {% endif %}

    {{ prompt.description or prompt.content[:150] + '...' if prompt.content|length > 150 else prompt.content }}

    Recently created
    Recently modified
    {{ prompt.content|length if prompt.content else 0 }} characters
  • {% endfor %}
{% else %}

No prompts found

Get started by creating your first prompt

Create Your First Prompt
{% endif %}
{% endblock %}