add notification page

This commit is contained in:
2025-05-29 10:16:58 +02:00
parent 096a70bb5d
commit 5ecb8c956c
4 changed files with 28 additions and 2 deletions

View File

@@ -340,6 +340,12 @@ def init_routes(main_bp):
def trash():
return render_template('trash/trash.html')
@main_bp.route('/notifications')
@login_required
@require_password_change
def notifications():
return render_template('notifications/notifications.html')
@main_bp.route('/settings')
@login_required
def settings():