{% extends "admin/_layout.html" %} {% from "_macros.html" import icon %} {% set section = "suggestions" %} {% block title %}Suggestions - {{ brand.name }}{% endblock %} {% block heading %}Suggestions{% endblock %} {% block admin_content %}

Cards on the new-chat screen. Clicking one sends its prompt straight away, so each has to work on its own — write one that asks for whatever it needs, and the first reply becomes the right question rather than a guess. The first {{ max_shown }} enabled ones are shown, in this order.

{% if saved %}
{{ icon("check", "icon--sm") }} {{ saved }}
{% endif %} {% for suggestion in suggestions %}

{{ suggestion.name }} {% if not suggestion.enabled %}{{ t("hidden") }}{% endif %} {% if loop.index > max_shown and suggestion.enabled %} {{ t("below the cut") }} {% endif %}

{{ t("The heading on the card.") }}

{{ t("Order on the screen, lowest first.") }}

{{ t("One line under the name, saying what it is for.") }}

{{ t("Sent as the first message. Nothing is added to it, so a prompt that needs material should ask for it.") }}

{% else %}
{{ icon("sparkle", "empty__mark") }}

{{ t("No suggestions") }}

{{ t("The new-chat screen shows its empty state instead.") }}

{% endfor %} {% if not at_limit %}

{{ t("Add a suggestion") }}

{% else %}

{{ max_suggestions }} is the limit. Delete one to add another — past a dozen this is a menu, and a menu on the empty screen is a worse blank page than a blank page.

{% endif %} {% endblock %}