File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -305,6 +305,9 @@ FIXER_API_KEY=CHANGEME
305305# When this is empty the content of config/banner.md is used as banner
306306BANNER = " "
307307
308+ # Enable the part image overlay which shows name and filename of the picture
309+ SHOW_PART_IMAGE_OVERLAY = true
310+
308311APP_ENV = prod
309312APP_SECRET = a03498528f5a5fc089273ec9ae5b2849
310313
Original file line number Diff line number Diff line change 2121 available_themes : ' %partdb.available_themes%'
2222 saml_enabled : ' %partdb.saml.enabled%'
2323 part_preview_generator : ' @App\Services\Attachments\PartPreviewGenerator'
24+ img_overlay : ' %partdb.show_part_image_overlay%'
2425
2526when@test :
2627 twig :
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ parameters:
7474 # Miscellaneous
7575 # #####################################################################################################################
7676 partdb.demo_mode : ' %env(bool:DEMO_MODE)%' # If set to true, all potentially dangerous things are disabled (like changing passwords of the own user)
77+ partdb.show_part_image_overlay : ' %env(bool:SHOW_PART_IMAGE_OVERLAY)%' # If set to false, the filename overlay of the part image will be disabled
7778
7879 # Set the themes from which the user can choose from in the settings.
7980 # Themes commented here by default, are not really usable, because of display problems. Enable them at your own risk!
Original file line number Diff line number Diff line change 1313 <div class =" carousel-item {% if loop .first %}active{% endif %}" >
1414 <a href =" {{ entity_url(pic , ' file_view' ) }}" data-turbo =" false" target =" _blank" rel =" noopener" >
1515 <img class =" d-block w-100 img-fluid img-thumbnail bg-light part-info-image" src =" {{ entity_url(pic , ' file_view' ) }}" alt =" " >
16+ {% if img_overlay %}
1617 <div class =" mask" ></div >
1718 <div class =" carousel-caption-hover" >
1819 <div class =" carousel-caption text-white" >
2122 <div >{{ entity_type_label(pic .element ) }}</div >
2223 </div >
2324 </div >
25+ {% endif %}
2426 </a >
2527 </div >
2628 {% endfor %}
You can’t perform that action at this time.
0 commit comments