diff --git a/.docker/templates/default.conf.template b/.docker/templates/default.conf.template index e77213bd9..c4d0c033d 100644 --- a/.docker/templates/default.conf.template +++ b/.docker/templates/default.conf.template @@ -5,6 +5,7 @@ server { root ${NGINX_WEB_ROOT}; client_max_body_size ${NGINX_MAX_BODY_SIZE}; + fastcgi_read_timeout ${NGINX_FASTCGI_READ_TIMEOUT}; set_real_ip_from 172.16.0.0/16; set_real_ip_from 192.168.39.0/24; diff --git a/CHANGELOG.md b/CHANGELOG.md index ed4c846e6..e66177515 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,9 @@ Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +- [PR-394](https://github.com/itk-dev/os2loop/pull/394) + Made `NGINX_FASTCGI_READ_TIMEOUT` have effect + ## [1.3.3] - 2026-05-20 - [PR-393](https://github.com/itk-dev/os2loop/pull/393) diff --git a/web/profiles/custom/os2loop/themes/os2loop_theme/templates/navigation/content-tasks.html.twig b/web/profiles/custom/os2loop/themes/os2loop_theme/templates/navigation/content-tasks.html.twig index dfd74d2d4..5736e2ec6 100644 --- a/web/profiles/custom/os2loop/themes/os2loop_theme/templates/navigation/content-tasks.html.twig +++ b/web/profiles/custom/os2loop/themes/os2loop_theme/templates/navigation/content-tasks.html.twig @@ -11,9 +11,10 @@
{% if node.id|default(false) %} {% if is_granted('entity print access bundle ' ~ node.bundle) %} -
- - {{ 'Print document (PDF)'|t }} + {% set print_label = node.bundle == 'os2loop_documents_collection' ? 'Print document collection (PDF)'|t : 'Print document (PDF)'|t %} + {% endif %} diff --git a/web/profiles/custom/os2loop/translations/translations.da.po b/web/profiles/custom/os2loop/translations/translations.da.po index 28c928c4d..e02a41462 100644 --- a/web/profiles/custom/os2loop/translations/translations.da.po +++ b/web/profiles/custom/os2loop/translations/translations.da.po @@ -765,6 +765,9 @@ msgstr "Dansk" msgid "Print document (PDF)" msgstr "Udskriv dokument (PDF)" +msgid "Print document collection (PDF)" +msgstr "Udskriv dokumentsamling (PDF)" + msgid "Contact editoral staff" msgstr "Skriv til redaktionen"