first commit

This commit is contained in:
usernames122
2025-08-10 23:42:02 +02:00
commit 877a246134
24 changed files with 957 additions and 0 deletions

7
pages/index.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import Blueprint, render_template
from models import db, User
index_bp = Blueprint('index', __name__)
@index_bp.route('/')
def index():
return render_template('home.html',users=User.query.limit(20).all()) # or your index page template