{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}
{{ title }}
{{ form.hidden_tag() }}
{{ form.title.label(class="form-label fw-semibold") }} {{ form.title(class="form-control", placeholder="e.g. How do customers reset their password?") }} {% for e in form.title.errors %}
{{ e }}
{% endfor %}
{{ form.content.label(class="form-label fw-semibold") }} {{ form.content(class="form-control", rows=8, placeholder="Write a concise, factual answer the assistant should know. Steps and specifics work best.") }} {% for e in form.content.errors %}
{{ e }}
{% endfor %}
Plain text. This is injected into the chatbot's knowledge on every conversation.
{{ form.sort_order.label(class="form-label fw-semibold") }} {{ form.sort_order(class="form-control") }}
Lower numbers appear first.
{{ form.active(class="form-check-input") }} {{ form.active.label(class="form-check-label") }}
Cancel
{% endblock %}