nopaque/app/blueprints/contributions/routes.py

8 lines
161 B
Python
Raw Normal View History

2024-11-15 14:59:08 +00:00
from flask import render_template
from . import bp
2023-03-13 15:22:42 +00:00
@bp.route('')
2024-11-14 13:36:18 +00:00
def index():
2024-11-15 14:59:08 +00:00
return render_template('contributions/index.html.j2', title='Contributions')