diff --git a/server/app.py b/server/app.py index 4c1d6c9..c9e5dbb 100644 --- a/server/app.py +++ b/server/app.py @@ -478,7 +478,7 @@ def show_stats(): elements: List[MediaElement] = MediaElement.select() collections: List[MediaCollection] = MediaCollection.select() return render_template( - "stats.htm", + "stats/main.htm", stats={ "last_updated": orm.max(c.last_updated for c in collections), "media": { diff --git a/server/templates/stats.htm b/server/templates/stats/main.htm similarity index 100% rename from server/templates/stats.htm rename to server/templates/stats/main.htm