{% extends 'base.html' %} {% block title %}prompts by label{% endblock title %} {% block content %}

Prompts with label: {{ label.name }}

{% for prompt in prompts %}

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

{% endfor %}
{% endblock %}