diff options
Diffstat (limited to 'app/modules/customers')
-rw-r--r-- | app/modules/customers/routes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/modules/customers/routes.py b/app/modules/customers/routes.py index c8ae072..9db604e 100644 --- a/app/modules/customers/routes.py +++ b/app/modules/customers/routes.py @@ -29,8 +29,8 @@ def view(): modules = Module.query.all() cust = Customer.query.order_by(Customer.primary_key.desc()) module = "customers" - flash(f"Successfully accessed module {module}.", "info") - flash(f"Still fighting against styling in {module}.", "error") + # flash(f"Successfully accessed module {module}.", "info") + # flash(f"Still fighting against styling in {module}.", "error") return render_template( f"modules/{module}.html", modules=modules, |