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

Chatbot

{% if conversation.conversation %} {% for message in conversation.conversation %}
{{ message.content }}
{% endfor %} {% else %}
Start a new conversation by sending a message.
{% endif %}
{% endblock %}