{% extends 'base.html' %} {% block header %}

{% block title %}History{% endblock %}

{% endblock %} {% block content %} {% for chat in chat_history %}
Question: {{ chat['input_prompt'] }}
Response: {{ chat['response_text'] | safe}}
{% else %}

No chat history found.

{% endfor %} {% endblock %}