diff --git a/home/templates/chat/admin/admin_chat.html b/home/templates/chat/admin/admin_chat.html
new file mode 100644
index 0000000..467e614
--- /dev/null
+++ b/home/templates/chat/admin/admin_chat.html
@@ -0,0 +1,29 @@
+{% extends "wagtailadmin/base.html" %}
+{% load static i18n %}
+
+{% block titletag %}
+ {% trans "Chat with" %} {{ chat_user.email }}
+{% endblock titletag %}
+
+{% block content %}
+ {% include "wagtailadmin/shared/header.html" with title="Chat" icon="mail" %}
+
{% trans "Admin Chat View" %}
+ {% trans "This is the admin view of the chat. Here you can manage conversations and monitor user interactions." %}
+
+
+ {% for message in chat_messages %}
+ -
+ {{ message.sender.email }}: {{ message.content }}
+
+ {% empty %}
+ - {% trans "No messages found." %}
+ {% endfor %}
+
+
+{% endblock content %}
+
+
diff --git a/home/templates/chat/admin/admin_chat_dashboard.html b/home/templates/chat/admin/admin_chat_dashboard.html
new file mode 100644
index 0000000..3b8d824
--- /dev/null
+++ b/home/templates/chat/admin/admin_chat_dashboard.html
@@ -0,0 +1,23 @@
+{% extends "wagtailadmin/base.html" %}
+{% load static i18n %}
+
+{% block titletag %}
+ {% trans "Chat" %}
+{% endblock titletag %}
+
+{% block content %}
+ {% include "wagtailadmin/shared/header.html" with title="Chat" icon="mail" %}
+ {% trans "Admin Chat Dashboard" %}
+
+ {% for user in chats %}
+ -
+
+ {{ user.email }}
+
+
+ {% empty %}
+ - {% trans "No active chats found." %}
+ {% endfor %}
+
+{% endblock content %}
+
diff --git a/home/templates/chat/user_chat.html b/home/templates/chat/user_chat.html
new file mode 100644
index 0000000..7344c9f
--- /dev/null
+++ b/home/templates/chat/user_chat.html
@@ -0,0 +1,26 @@
+{% extends "base.html" %}
+{% load static i18n %}
+
+{% block title %}
+ {% trans "Chat" %}
+{% endblock title %}
+
+{% block content %}
+ {% trans "Chat with Support" %}
+ {% trans "This is the user chat interface. Here you can communicate with our support team for assistance." %}
+
+
+ {% for message in chat_messages %}
+ -
+ {{ message.sender.email }}: {{ message.content }}
+
+ {% empty %}
+ - {% trans "No messages found." %}
+ {% endfor %}
+
+
+{% endblock content %}