Prototype Query Builder for demo only

This commit is contained in:
Inga Kirschnick
2022-07-13 14:06:22 +02:00
parent 7e8f24e6bf
commit 5cbc6ea822
7 changed files with 1256 additions and 0 deletions

5
app/test/__init__.py Normal file
View File

@ -0,0 +1,5 @@
from flask import Blueprint
bp = Blueprint('test', __name__)
from . import routes

10
app/test/routes.py Normal file
View File

@ -0,0 +1,10 @@
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")