diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-07-28 19:20:49 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-07-28 19:20:49 +0100 |
commit | f61f9e8654408ed3a28f22d87234885daf165bae (patch) | |
tree | 3f29862460f7b4f04d7d8ca4646b03b02b7e965b | |
parent | 286207ffa212cbe2cdc3c2e5abc511f3c7d6fcad (diff) | |
download | cheatdb-f61f9e8654408ed3a28f22d87234885daf165bae.tar.xz |
Fix typo in template path for tags list
-rw-r--r-- | app/views/tagseditor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/tagseditor.py b/app/views/tagseditor.py index adcbec8..7d88f28 100644 --- a/app/views/tagseditor.py +++ b/app/views/tagseditor.py @@ -27,7 +27,7 @@ from app.utils import rank_required @app.route("/tags/") @rank_required(UserRank.MODERATOR) def tag_list_page(): - return render_template("admin/tagslist.html", tags=Tag.query.order_by(db.asc(Tag.title)).all()) + return render_template("admin/tags/list.html", tags=Tag.query.order_by(db.asc(Tag.title)).all()) class TagForm(FlaskForm): title = StringField("Title", [InputRequired(), Length(3,100)]) |