Remove notification showing the id of the project after creation

Fixes #940
This commit is contained in:
Glandos 2021-11-25 13:02:02 +01:00
parent acb2799575
commit 93629c5833

View file

@ -341,8 +341,6 @@ def create_project():
), ),
category="info", 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 redirect(url_for(".list_bills", project_id=project.id))
return render_template("create_project.html", form=form) return render_template("create_project.html", form=form)