Fix typo in template path for tags list

This commit is contained in:
rubenwardy 2018-07-28 19:20:49 +01:00
parent 286207ffa2
commit f61f9e8654
No known key found for this signature in database
GPG Key ID: A1E29D52FF81513C
1 changed files with 1 additions and 1 deletions

View File

@ -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)])