From d88f117dc0ab0fa2a392e2544bf3db9eb52c53e6 Mon Sep 17 00:00:00 2001 From: Damien De Paoli Date: Tue, 4 Jul 2023 22:19:22 +1000 Subject: [PATCH] sort series by title --- series.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/series.py b/series.py index 905d4b1..88c1959 100644 --- a/series.py +++ b/series.py @@ -73,7 +73,7 @@ def ListOfSeriesWithMissingBooks(): @app.route("/seriess", methods=["GET"]) @login_required def seriess(): - seriess = Series.query.all() + seriess = Series.query.order_by(Series.title).all() return render_template("seriess.html", seriess=seriess, message=st.GetMessage(), alert=st.GetAlert()) ################################################################################