2023-03-14 11:13:35 +01:00
|
|
|
from flask import render_template
|
2023-03-13 16:22:42 +01:00
|
|
|
from flask_breadcrumbs import register_breadcrumb
|
2023-03-14 11:13:35 +01:00
|
|
|
from flask_login import login_required
|
2022-02-03 12:39:16 +01:00
|
|
|
from . import bp
|
|
|
|
|
|
|
|
|
2023-03-13 16:22:42 +01:00
|
|
|
@bp.route('')
|
2023-03-14 11:13:35 +01:00
|
|
|
@register_breadcrumb(bp, '.', '<i class="material-icons left">new_label</i>Contributions')
|
2023-03-08 15:22:40 +01:00
|
|
|
@login_required
|
2022-09-02 13:02:04 +02:00
|
|
|
def contributions():
|
2022-11-03 15:38:35 +01:00
|
|
|
return render_template(
|
2022-11-15 15:11:16 +01:00
|
|
|
'contributions/contributions.html.j2',
|
|
|
|
title='Contributions'
|
2022-11-03 15:38:35 +01:00
|
|
|
)
|