mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2025-06-12 09:00:40 +00:00
Add interaactive context change
This commit is contained in:
@ -68,11 +68,16 @@ class QueryForm(FlaskForm):
|
||||
validators=[DataRequired()])
|
||||
context = SelectField('Context',
|
||||
choices=[('', 'Words of context around hit'),
|
||||
('5', '5'),
|
||||
('10', '10'),
|
||||
('15', '15'),
|
||||
('20', '20'),
|
||||
('25', '25')],
|
||||
('30', '30'),
|
||||
('40', '40'),
|
||||
('50', '50'),
|
||||
('60', '60'),
|
||||
('70', '70'),
|
||||
('80', '80'),
|
||||
('90', '90'),
|
||||
('100', '100')],
|
||||
validators=[DataRequired()])
|
||||
submit = SubmitField('Start Query')
|
||||
|
||||
|
@ -56,7 +56,7 @@ def analyse_corpus(corpus_id):
|
||||
corpus.status = 'start analysis'
|
||||
db.session.commit()
|
||||
query_download_form = QueryDownloadForm()
|
||||
query_form = QueryForm(context=request.args.get('context', 10),
|
||||
query_form = QueryForm(context=request.args.get('context', 20),
|
||||
hits_per_page=request.args.get('hits_per_page', 30),
|
||||
query=request.args.get('query'))
|
||||
return render_template('corpora/analyse_corpus.html.j2',
|
||||
|
Reference in New Issue
Block a user