pyrom/app/routes/topics.py
2025-06-29 23:14:23 +03:00

10 lines
263 B
Python

from flask import Blueprint, render_template
from ..models import Users
bp = Blueprint("topics", __name__, url_prefix = "/topics/")
@bp.get("/")
def all_topics():
admin = Users.find({"id": 1})
return render_template("topics/topics.html", admin = admin)