mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
Fix model selection in HTR service page
This commit is contained in:
parent
31f91aaecb
commit
7e8f24e6bf
@ -113,7 +113,7 @@ class AddTranskribusHTRPipelineJobForm(AddJobForm):
|
|||||||
del self.binarization.render_kw['disabled']
|
del self.binarization.render_kw['disabled']
|
||||||
models = [
|
models = [
|
||||||
x for x in TranskribusHTRModel.query.filter().all()
|
x for x in TranskribusHTRModel.query.filter().all()
|
||||||
if version in x.compatible_service_versions and (x.shared == True or x.user == current_user)
|
if x.shared == True or x.user == current_user
|
||||||
]
|
]
|
||||||
self.model.choices = [('', 'Choose your option')]
|
self.model.choices = [('', 'Choose your option')]
|
||||||
self.model.choices += [(x.hashid, x.transkribus_name) for x in models]
|
self.model.choices += [(x.hashid, x.transkribus_name) for x in models]
|
||||||
|
@ -210,7 +210,7 @@ def transkribus_htr_pipeline():
|
|||||||
return make_response({'redirect_url': url_for('jobs.job', job_id=job.id)}, 201) # noqa
|
return make_response({'redirect_url': url_for('jobs.job', job_id=job.id)}, 201) # noqa
|
||||||
transkribus_htr_models = [
|
transkribus_htr_models = [
|
||||||
x for x in TranskribusHTRModel.query.filter().all()
|
x for x in TranskribusHTRModel.query.filter().all()
|
||||||
if version in x.compatible_service_versions and (x.shared == True or x.user == current_user)
|
if x.shared == True or x.user == current_user
|
||||||
]
|
]
|
||||||
return render_template(
|
return render_template(
|
||||||
f'services/transkribus_htr_pipeline.html.j2',
|
f'services/transkribus_htr_pipeline.html.j2',
|
||||||
@ -287,4 +287,4 @@ def corpus_analysis():
|
|||||||
return render_template(
|
return render_template(
|
||||||
'services/corpus_analysis.html.j2',
|
'services/corpus_analysis.html.j2',
|
||||||
title='Corpus analysis'
|
title='Corpus analysis'
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user