Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .docker/templates/default.conf.template
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
<div class="icon-container">
{% if node.id|default(false) %}
{% if is_granted('entity print access bundle ' ~ node.bundle) %}
<div class="icon print" data-toggle="tooltip" title="{{ 'Print document (PDF)'|t }}">
<a aria-label="{{ 'Print document (PDF)'|t }}" href="{{ path('entity_print.view', {export_type: 'pdf', entity_type: 'node', entity_id: node.id}) }}">
<span class="visually-hidden">{{ 'Print document (PDF)'|t }}</span>
{% set print_label = node.bundle == 'os2loop_documents_collection' ? 'Print document collection (PDF)'|t : 'Print document (PDF)'|t %}
<div class="icon print" data-toggle="tooltip" title="{{ print_label }}">
<a aria-label="{{ print_label }}" href="{{ path('entity_print.view', {export_type: 'pdf', entity_type: 'node', entity_id: node.id}) }}">
<span class="visually-hidden">{{ print_label }}</span>
</a>
</div>
{% endif %}
Expand Down
3 changes: 3 additions & 0 deletions web/profiles/custom/os2loop/translations/translations.da.po
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
Loading