{% extends 'allauth/layouts/base.html' %} {% block title %}Dashboard{% endblock %} {% block content %}

Your Chatbots

{% if chatbots %}
{% for chatbot in chatbots %}
{{ chatbot.name }}

Created: {{ chatbot.created_at|date:"F d, Y" }}

View Details
{% endfor %}
{% else %}

You haven't created any chatbots yet.

{% endif %} Create New Chatbot
{% endblock %}