Spaces:
Sleeping
Sleeping
Update templates/dashboard.html
Browse files- templates/dashboard.html +9 -7
templates/dashboard.html
CHANGED
|
@@ -1,7 +1,9 @@
|
|
| 1 |
-
{% extends "base.html" %}
|
| 2 |
-
{% block content %}
|
| 3 |
-
<h2>Dashboard</h2>
|
| 4 |
-
<p>Total messages: {{ total }}</p>
|
| 5 |
-
<p>Positive: {{ pos }} | Neutral: {{ neu }} | Negative: {{ neg }}</p>
|
| 6 |
-
<p><a href="{{ url_for('admin_negatives') }}">View negative messages (admin)</a></p>
|
| 7 |
-
{
|
|
|
|
|
|
|
|
|
| 1 |
+
{% extends "base.html" %}
|
| 2 |
+
{% block content %}
|
| 3 |
+
<h2>Dashboard</h2>
|
| 4 |
+
<p>Total messages: {{ total }}</p>
|
| 5 |
+
<p>Positive: {{ pos }} | Neutral: {{ neu }} | Negative: {{ neg }}</p>
|
| 6 |
+
<p><a href="{{ url_for('admin_negatives') }}">View negative messages (admin)</a></p>
|
| 7 |
+
<a href="{{ url_for('chat') }}" class="chat-btn">Go to Chat</a>
|
| 8 |
+
|
| 9 |
+
{% endblock %}
|