From 561fb35c31771edad8dfd9cab70d9b06100b4308 Mon Sep 17 00:00:00 2001
From: dnns01 <git@dnns01.de>
Date: Wed, 22 Dec 2021 11:15:33 +0100
Subject: [PATCH] Show whispers in Web Interface

---
 haugebot/urls.py                          |  1 +
 haugebot_web/migrations/0007_whisper.py   |  1 -
 haugebot_web/templates/layout.html        |  2 ++
 haugebot_web/templates/list_whispers.html | 25 +++++++++++++++++++++++
 haugebot_web/views.py                     | 10 +++++++--
 5 files changed, 36 insertions(+), 3 deletions(-)
 create mode 100644 haugebot_web/templates/list_whispers.html

diff --git a/haugebot/urls.py b/haugebot/urls.py
index e291df7..3859164 100644
--- a/haugebot/urls.py
+++ b/haugebot/urls.py
@@ -31,6 +31,7 @@ urlpatterns = [
     path('wusstest_du_schon/edit/<int:text_id>', views.wusstest_du_schon_edit, name="wusstest_du_schon_edit"),
     path('wusstest_du_schon/active', views.wusstest_du_schon_active, name="wusstest_du_schon_active"),
     path('wusstest_du_schon/remove', views.wusstest_du_schon_remove, name="wusstest_du_schon_remove"),
+    path('whispers', views.whispers, name="whispers"),
     path('wordcloud/', views.wordcloud, name="wordcloud"),
     path('wordcloud/live/<str:id>', views.wordcloud_live, name="wordcloud_live")
 ]
diff --git a/haugebot_web/migrations/0007_whisper.py b/haugebot_web/migrations/0007_whisper.py
index b88acf1..1b0da07 100644
--- a/haugebot_web/migrations/0007_whisper.py
+++ b/haugebot_web/migrations/0007_whisper.py
@@ -1,6 +1,5 @@
 # Generated by Django 3.2.10 on 2021-12-22 09:49
 
-import datetime
 from django.db import migrations, models
 import django
 
diff --git a/haugebot_web/templates/layout.html b/haugebot_web/templates/layout.html
index 34fcd7d..8b61690 100644
--- a/haugebot_web/templates/layout.html
+++ b/haugebot_web/templates/layout.html
@@ -21,6 +21,8 @@
                 Schon?</a>
             <a href="{% url 'wordcloud' %}"
                class="w3-bar-item w3-button {% if title == "Wordcloud" %}w3-light-gray{% endif %}">Wordcloud</a>
+            <a href="{% url 'whispers' %}"
+               class="w3-bar-item w3-button {% if title == "Geflüster" %}w3-light-gray{% endif %}">Geflüster</a>
             <a href="{% url 'logout' %}" class="w3-bar-item w3-button">Logout</a>
         {% else %}
             <a href="{% url 'login' %}" class="w3-bar-item w3-button">Login</a>
diff --git a/haugebot_web/templates/list_whispers.html b/haugebot_web/templates/list_whispers.html
new file mode 100644
index 0000000..3af46fd
--- /dev/null
+++ b/haugebot_web/templates/list_whispers.html
@@ -0,0 +1,25 @@
+{% extends 'layout.html' %}
+
+{% block content %}
+{% csrf_token %}
+<div class="w3-card w3-white">
+    <div class="w3-padding">
+        <table class="w3-table w3-striped">
+            <tbody>
+            <tr>
+                <th>Autor</th>
+                <th>Nachricht</th>
+                <th>Gesendet um</th>
+            </tr>
+            {% for whisper in whispers %}
+                <tr>
+                    <td>{{ whisper.author }}</td>
+                    <td>{{ whisper.content }}</td>
+                    <td>{{ whisper.received_at | date:"d.m.Y G:i:s"}}</td>
+                </tr>
+            {% endfor %}
+            </tbody>
+        </table>
+    </div>
+</div>
+{% endblock %}
\ No newline at end of file
diff --git a/haugebot_web/views.py b/haugebot_web/views.py
index 2031a8e..6befda5 100644
--- a/haugebot_web/views.py
+++ b/haugebot_web/views.py
@@ -4,13 +4,13 @@ import json
 import requests
 from django.contrib.auth import authenticate, login as django_login, logout as django_logout
 from django.contrib.auth.decorators import login_required
-from django.forms import modelformset_factory, modelform_factory
+from django.forms import modelform_factory
 from django.shortcuts import render, redirect, get_object_or_404
 from django.urls import reverse
 from django.http import Http404, JsonResponse, HttpResponse, HttpRequest
 
 from .forms import BaseForm
-from .models import WusstestDuSchon, Setting
+from .models import WusstestDuSchon, Setting, Whisper
 
 
 # Create your views here.
@@ -171,3 +171,9 @@ def wusstest_du_schon_remove(request):
     raise Http404
 
 # </editor-fold>
+
+@login_required(login_url="/login")
+def whispers(request):
+    whisper_messages = Whisper.objects.all().order_by("-received_at")
+
+    return render(request, "list_whispers.html", {'title': 'Geflüster', "whispers": whisper_messages})
-- 
GitLab