30 lines
934 B
HTML
30 lines
934 B
HTML
{% 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" %}
|
|
<h1>{% trans "Admin Chat View" %}</h1>
|
|
<p>{% trans "This is the admin view of the chat. Here you can manage conversations and monitor user interactions." %}</p>
|
|
|
|
<ul>
|
|
{% for message in chat_messages %}
|
|
<li>
|
|
<strong>{{ message.sender.email }}:</strong> {{ message.content }}
|
|
</li>
|
|
{% empty %}
|
|
<li>{% trans "No messages found." %}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
<form action="/chat/send/{{ chat_user.id }}/" method="post">
|
|
{% csrf_token %}
|
|
<input type="text" name="content" placeholder="{% trans "Type your message here..." %}" required>
|
|
<button type="submit">{% trans "Send" %}</button>
|
|
</form>
|
|
{% endblock content %}
|
|
|
|
|