Move some blueprints and rename routes

This commit is contained in:
Patrick Jentsch
2024-11-15 15:59:08 +01:00
parent ee7f64f5be
commit a8ab1bee71
26 changed files with 45 additions and 174 deletions

View File

@ -1,7 +1,7 @@
from flask import redirect, url_for
from flask import render_template
from . import bp
@bp.route('')
def index():
return redirect(url_for('main.dashboard', _anchor='contributions'))
return render_template('contributions/index.html.j2', title='Contributions')