add mod panel view

This commit is contained in:
2025-11-27 15:28:17 +03:00
parent 4d88b5c24c
commit fc9ae63471
4 changed files with 19 additions and 2 deletions

View File

@@ -13,7 +13,6 @@ bp = Blueprint("topics", __name__, url_prefix = "/topics/")
@bp.get("/")
def all_topics():
admin = Users.find({"id": 1})
return render_template("topics/topics.html", topic_list = Topics.get_list(), active_threads = Topics.get_active_threads())