aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-05-29 17:20:11 +0100
committerrubenwardy <rw@rubenwardy.com>2018-05-29 17:20:11 +0100
commit52fdc8c2120e459772e221c68b25bf6e7060f6f8 (patch)
treeebb9a1d16fc2ca4b13e3ea7ca332021b8c6e61b7
parent7e80adad5621013e5840ac43281cff149fa15842 (diff)
downloadcheatdb-52fdc8c2120e459772e221c68b25bf6e7060f6f8.tar.xz
Add clear all button to notifications page
-rw-r--r--app/templates/notifications/list.html6
-rw-r--r--app/views/notifications.py9
2 files changed, 14 insertions, 1 deletions
diff --git a/app/templates/notifications/list.html b/app/templates/notifications/list.html
index fb133e8..d6de54e 100644
--- a/app/templates/notifications/list.html
+++ b/app/templates/notifications/list.html
@@ -5,6 +5,12 @@ Notifications
{% endblock %}
{% block content %}
+ {% if current_user.notifications %}
+ <form method="post" action="{{ url_for('clear_notifications_page') }}">
+ <input type="hidden" name="csrf_token" value="{{ csrf_token() }}" />
+ <input type="submit" value="Clear All" />
+ </form>
+ {% endif %}
<ul>
{% for n in current_user.notifications %}
<li><a href="{{ n.url }}">
diff --git a/app/views/notifications.py b/app/views/notifications.py
index 4515ae5..23dbb31 100644
--- a/app/views/notifications.py
+++ b/app/views/notifications.py
@@ -23,4 +23,11 @@ from app.models import *
@app.route("/notifications/")
@login_required
def notifications_page():
- return render_template("notifications/list.html")
+ return render_template("notifications/list.html")
+
+@app.route("/notifications/clear/", methods=["POST"])
+@login_required
+def clear_notifications_page():
+ current_user.notifications.clear()
+ db.session.commit()
+ return redirect(url_for("notifications_page"))