{% extends 'base.html' %} {% block title %}prompts{% endblock title %} {% block content %} Back to Categories

Prompts in category: {{ category.name }}

{% if prompts %} {% endif %}
{% for prompt in prompts %}
{% if user != prompt.owner and prompt.is_public %} community {% endif %}

{{ prompt.text|truncatechars:250 }} Length: {{ prompt.text|length }} chars.

{% if user == prompt.owner %}
{{ prompt.is_public|yesno:"Click to make private,Click to make public" }}
{% endif %}
{% for id, label in prompt_labels %} {% if id == prompt.id %} {% for label_val in label %} {{ label_val.name }} {% endfor %} {% endif %} {% endfor %}

Last updated: {{ prompt.modified_at }}

{% if user != prompt.owner %} {% endif %} {% if user == prompt.owner %} {% endif %} {% if user != prompt.owner %} {% endif %}
{% empty %}

No prompts. Here's a cookie

{% endfor %}
Copied prompt to clipboard
{% endblock %}