mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
13 lines
255 B
Python
13 lines
255 B
Python
from flask import render_template
|
|
from flask_login import login_required
|
|
from . import bp
|
|
|
|
|
|
@bp.route('/')
|
|
@login_required
|
|
def contributions():
|
|
return render_template(
|
|
'contributions/contributions.html.j2',
|
|
title='Contributions'
|
|
)
|