diff --git a/__init__.py b/__init__.py index dbd7379..6e1e38e 100644 --- a/__init__.py +++ b/__init__.py @@ -236,6 +236,7 @@ def shop_owner_login(): def shops(): """List all shops""" shops = Shop.query.all() + shops = reversed(shops) return render_template("shops.html", shops=shops)