8 lines
161 B
Python
Raw Normal View History

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