diff --git a/app/templates/_base/_modals/_manual/06_services.html.j2 b/app/templates/_base/_modals/_manual/06_services.html.j2 index e65f8088..40d9fb53 100644 --- a/app/templates/_base/_modals/_manual/06_services.html.j2 +++ b/app/templates/_base/_modals/_manual/06_services.html.j2 @@ -1,4 +1,4 @@ -

Services

+

Services

Services diff --git a/app/templates/_base/metas.html.j2 b/app/templates/_base/metas.html.j2 new file mode 100644 index 00000000..30185f8f --- /dev/null +++ b/app/templates/_base/metas.html.j2 @@ -0,0 +1,2 @@ + + diff --git a/app/templates/_base/scripts.html.j2 b/app/templates/_base/scripts.html.j2 index efc317d8..a527a835 100644 --- a/app/templates/_base/scripts.html.j2 +++ b/app/templates/_base/scripts.html.j2 @@ -1,20 +1,20 @@ + - -{%- assets +{% assets filters='rjsmin', output='gen/app.%(version)s.js', 'js/index.js', 'js/app.js', 'js/utils.js' -%} +-%} -{%- endassets %} +{% endassets -%} -{%- assets +{% assets filters='rjsmin', output='gen/Forms.%(version)s.js', 'js/forms/index.js', @@ -22,22 +22,22 @@ 'js/forms/create-contribution-form.js', 'js/forms/create-corpus-file-form.js', 'js/forms/create-job-form.js' -%} +-%} -{%- endassets %} +{% endassets -%} -{%- assets +{% assets filters='rjsmin', output='gen/resource-displays.%(version)s.js', 'js/resource-displays/index.js', 'js/resource-displays/resource-display.js', 'js/resource-displays/corpus-display.js', 'js/resource-displays/job-display.js' -%} +-%} -{%- endassets %} +{% endassets -%} -{%- assets +{% assets filters='rjsmin', output='gen/resource-lists.%(version)s.js', 'js/resource-lists/index.js', @@ -56,11 +56,11 @@ 'js/resource-lists/public-user-list.js', 'js/resource-lists/spacy-nlp-pipeline-model-list.js', 'js/resource-lists/tesseract-ocr-pipeline-model-list.js' -%} +-%} -{%- endassets %} +{% endassets -%} -{%- assets +{% assets filters='rjsmin', output='gen/requests.%(version)s.js', 'js/requests/index.js', @@ -69,11 +69,11 @@ 'js/requests/corpora.js', 'js/requests/jobs.js', 'js/requests/users.js' -%} +-%} -{%- endassets %} +{% endassets -%} -{%- assets +{% assets filters='rjsmin', output='gen/corpus-analysis.%(version)s.js', 'js/corpus-analysis/index.js', @@ -98,17 +98,16 @@ 'js/corpus-analysis/concordance-extension.js', 'js/corpus-analysis/reader-extension.js', 'js/corpus-analysis/static-visualization-extension.js' -%} +-%} -{%- endassets %} +{% endassets -%} - {% endblock scripts %} - {% endblock body %} - - {% endblock html %} - -{% endblock doc %} diff --git a/app/templates/services/file_setup_pipeline.html.j2 b/app/templates/services/file_setup_pipeline.html.j2 index 0f046e98..f2647983 100644 --- a/app/templates/services/file_setup_pipeline.html.j2 +++ b/app/templates/services/file_setup_pipeline.html.j2 @@ -1,5 +1,5 @@ {% extends "base.html.j2" %} -{% import "materialize/wtf.html.j2" as wtf %} +{% import "wtf.html.j2" as wtf %} {% block main_attribs %} class="service-scheme" data-service="file-setup-pipeline"{% endblock main_attribs %} diff --git a/app/templates/services/spacy_nlp_pipeline.html.j2 b/app/templates/services/spacy_nlp_pipeline.html.j2 index a7bf214c..094d132a 100644 --- a/app/templates/services/spacy_nlp_pipeline.html.j2 +++ b/app/templates/services/spacy_nlp_pipeline.html.j2 @@ -1,5 +1,5 @@ {% extends "base.html.j2" %} -{% import "materialize/wtf.html.j2" as wtf %} +{% import "wtf.html.j2" as wtf %} {% block main_attribs %} class="service-scheme" data-service="spacy-nlp-pipeline"{% endblock main_attribs %} diff --git a/app/templates/services/tesseract_ocr_pipeline.html.j2 b/app/templates/services/tesseract_ocr_pipeline.html.j2 index 69be6889..d4e9ce2c 100644 --- a/app/templates/services/tesseract_ocr_pipeline.html.j2 +++ b/app/templates/services/tesseract_ocr_pipeline.html.j2 @@ -1,5 +1,5 @@ {% extends "base.html.j2" %} -{% import "materialize/wtf.html.j2" as wtf %} +{% import "wtf.html.j2" as wtf %} {% block main_attribs %} class="service-scheme" data-service="tesseract-ocr-pipeline"{% endblock main_attribs %} diff --git a/app/templates/services/transkribus_htr_pipeline.html.j2 b/app/templates/services/transkribus_htr_pipeline.html.j2 index 50eb3b6e..37dfd6c7 100644 --- a/app/templates/services/transkribus_htr_pipeline.html.j2 +++ b/app/templates/services/transkribus_htr_pipeline.html.j2 @@ -1,5 +1,5 @@ {% extends "base.html.j2" %} -{% import "materialize/wtf.html.j2" as wtf %} +{% import "wtf.html.j2" as wtf %} {% block main_attribs %} class="service-scheme" data-service="transkribus-htr-pipeline"{% endblock main_attribs %} diff --git a/app/templates/users/settings/settings.html.j2 b/app/templates/users/settings/settings.html.j2 index f2593bd6..aeced15e 100644 --- a/app/templates/users/settings/settings.html.j2 +++ b/app/templates/users/settings/settings.html.j2 @@ -1,5 +1,5 @@ {% extends "base.html.j2" %} -{% import "materialize/wtf.html.j2" as wtf %} +{% import "wtf.html.j2" as wtf %} {% block page_content %}
diff --git a/app/templates/users/user.html.j2 b/app/templates/users/user.html.j2 index 41054eb6..89a42188 100644 --- a/app/templates/users/user.html.j2 +++ b/app/templates/users/user.html.j2 @@ -1,5 +1,5 @@ {% extends "base.html.j2" %} -{% import "materialize/wtf.html.j2" as wtf %} +{% import "wtf.html.j2" as wtf %} {% block page_content %} diff --git a/app/templates/materialize/wtf.html.j2 b/app/templates/wtf.html.j2 similarity index 100% rename from app/templates/materialize/wtf.html.j2 rename to app/templates/wtf.html.j2