nopaque/app/blueprints/contributions/routes.py
2024-11-15 15:59:08 +01:00

8 lines
161 B
Python

from flask import render_template
from . import bp
@bp.route('')
def index():
return render_template('contributions/index.html.j2', title='Contributions')