mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
11 lines
254 B
Python
11 lines
254 B
Python
|
from flask import render_template
|
||
|
from flask_login import login_required
|
||
|
from . import playground
|
||
|
|
||
|
|
||
|
@playground.route('/')
|
||
|
@login_required
|
||
|
def index():
|
||
|
return render_template('playground/index.html.j2',
|
||
|
title='Playground')
|