{% extends 'base.html' %} {% block title %}categories{% endblock title %} {% block content %}

Categories

Welcome to Vidura, a ChatGPT Prompt Management System (CPMS) that allows you to easily create, retrieve, and search your prompts.



Pinned Categories

{% for category in pinned_categories %}

{{ category.name}}

Prompts: {{ category.num_prompts }}

Recetnly added prompts:

    {% for prompt in category.recent_prompts %}
  • * {{ prompt.text|truncatechars:50 }}
  • {% empty %}
  • None
  • {% endfor %}

Last updated: {{ category.last_updated }}

{% empty %}

No pinned categories found. Pin a category by clicking on the "Pin to top" button.

{% endfor %}

Unpinned Categories

{% for category in unpinned_categories %}

{{ category.name}}

Prompts: {{ category.num_prompts }}

Recetnly added prompts:

    {% for prompt in category.recent_prompts %}
  • * {{ prompt.text|truncatechars:50 }}
  • {% empty %}
  • None
  • {% endfor %}

Last updated: {{ category.last_updated }}

{% empty %}

No categories found. Add one by clicking the "Add Category" button.

{% endfor %}
{% endblock %}