{% extends "admin/base.html" %} {% load static i18n %} {% block title %}{% trans "AI Assistant" %}{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}
{% if dash_ui_settings.ai_enabled %}
{% trans "AI Assistant" %}
{% trans "Chat History" %}

{% trans "Hello! I'm your AI assistant" %}

{% trans "Ask me anything — data, reports, or editing records" %}

{% trans "How many records in the system?" %}
{% trans "Show latest data" %}
{% trans "Add new record" %}
{% else %}

{% trans "AI Assistant is disabled" %}

{% trans "Enable it from settings page and enter your API key and AI model" %}

{% trans "Settings" %}
{% endif %} {% endblock %} {% block scripts %}{{ block.super }} {% endblock %}