deedrop1140 commited on
Commit
160eed0
·
verified ·
1 Parent(s): 7552da4

Update templates/dashboard.html

Browse files
Files changed (1) hide show
  1. 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
- {% endblock %}
 
 
 
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 %}