diff options
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/notifications/list.html | 6 |
1 files changed, 6 insertions, 0 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 }}"> |
