mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 09:15:41 +00:00
11 lines
271 B
Python
11 lines
271 B
Python
from flask import render_template
|
|
from flask_login import login_required
|
|
from app.models import Corpus, CorpusFile, CorpusStatus
|
|
from . import bp
|
|
import os
|
|
|
|
@bp.route('')
|
|
@login_required
|
|
def test():
|
|
return render_template('test/analyse_corpus.html.j2', title="Test")
|