From e9291811288b6da73d36e342c9fa425483066c87 Mon Sep 17 00:00:00 2001 From: Glandos Date: Thu, 25 Nov 2021 14:30:17 +0100 Subject: [PATCH] Remove notification showing the id of the project after creation (#944) --- ihatemoney/web.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ihatemoney/web.py b/ihatemoney/web.py index 547d031e..d9e7ec08 100644 --- a/ihatemoney/web.py +++ b/ihatemoney/web.py @@ -341,8 +341,6 @@ def create_project(): ), category="info", ) - # redirect the user to the next step (invite) - flash(_("The project identifier is %(project)s", project=project.id)) return redirect(url_for(".list_bills", project_id=project.id)) return render_template("create_project.html", form=form)