mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-12-26 03:14:19 +00:00
8 lines
161 B
Python
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')
|