mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
15 lines
395 B
Python
15 lines
395 B
Python
from flask import render_template
|
|
from flask_breadcrumbs import register_breadcrumb
|
|
from flask_login import login_required
|
|
from . import bp
|
|
|
|
|
|
@bp.route('')
|
|
@register_breadcrumb(bp, '.', '<i class="material-icons left">new_label</i>Contributions')
|
|
@login_required
|
|
def contributions():
|
|
return render_template(
|
|
'contributions/contributions.html.j2',
|
|
title='Contributions'
|
|
)
|