2.0.0-rc1 : Profile and achievements update.

This commit is contained in:
2026-08-09 00:50:45 +08:00
parent 562775e5db
commit 3874bf57a9
31 changed files with 2618 additions and 108 deletions
+15
View File
@@ -0,0 +1,15 @@
from flask import Blueprint, render_template
from web.services.narrative_service import NarrativeService
bp = Blueprint('reports', __name__, url_prefix='/reports')
@bp.route('/')
def index():
return render_template(
'reports/index.html',
reports=NarrativeService.list_match_reports(50),
)