mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
13 lines
306 B
Python
13 lines
306 B
Python
from flask import render_template
|
|
from flask_login import login_required
|
|
from . import test
|
|
from .forms import TestForm
|
|
|
|
|
|
@test.route('/')
|
|
@login_required
|
|
def index():
|
|
test_form = TestForm()
|
|
return render_template('test/index.html.j2', title='Test',
|
|
test_form=test_form)
|