2.0.0-rc1 : Profile and achievements update.
This commit is contained in:
@@ -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),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user