thread page mostly finished

This commit is contained in:
2026-04-15 23:11:24 +03:00
parent 7db111d18b
commit d0daaf4494
13 changed files with 330 additions and 21 deletions

7
app/routes/posts.py Normal file
View File

@@ -0,0 +1,7 @@
from flask import Blueprint
bp = Blueprint('posts', __name__, url_prefix='/posts/')
@bp.get('/<int:post_id>/edit')
def edit(post_id):
return 'stub'