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()) ################################################################################