Add vorbereitungen section for workshop fgho 2023

This commit is contained in:
Patrick Jentsch
2023-07-25 16:04:45 +02:00
parent 2dd6015ba6
commit ae6a7cb86d
8 changed files with 95 additions and 2 deletions

View File

@ -1,9 +1,17 @@
from flask import render_template
from flask import redirect, render_template, url_for
from flask_breadcrumbs import register_breadcrumb
from . import bp
@bp.route('')
@register_breadcrumb(bp, '.', '<i class="material-icons left">business_center</i>Workshops')
def workshops():
return redirect(url_for('main.dashboard'))
@bp.route('/fgho_sommerschule_2023')
def index():
@register_breadcrumb(bp, '.fgho_sommerschule_2023', 'FGHO Sommerschule 2023')
def fgho_sommerschule_2023():
return render_template(
'workshops/fgho_sommerschule_2023.html.j2',
title='FGHO Sommerschule 2023',