From 5afb92b767092790db1cd8514817e6f959356353 Mon Sep 17 00:00:00 2001 From: Aevann Date: Fri, 8 Mar 2024 05:17:02 +0200 Subject: [PATCH] versions.html --- files/routes/admin.py | 2 +- files/templates/{edits.html => versions.html} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename files/templates/{edits.html => versions.html} (100%) diff --git a/files/routes/admin.py b/files/routes/admin.py index f37e86765..9e3c5ccdf 100644 --- a/files/routes/admin.py +++ b/files/routes/admin.py @@ -2246,4 +2246,4 @@ def VIEW_VERSIONs(v, link): if v.id != obj.author_id and v.admin_level < PERMS['VIEW_VERSIONS']: abort(403, "You can't view other people's edits!") - return render_template("edits.html", v=v, obj=obj) + return render_template("versions.html", v=v, obj=obj) diff --git a/files/templates/edits.html b/files/templates/versions.html similarity index 100% rename from files/templates/edits.html rename to files/templates/versions.html