mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-27 10:14:17 +08:00
9 lines
266 B
Ruby
9 lines
266 B
Ruby
module StorageLocationsHelper
|
|
def storage_locations_placeholder
|
|
return if StorageLocation.storage_locations_enabled?
|
|
|
|
"<div class=\"p-4 rounded bg-sn-super-light-blue\">
|
|
#{I18n.t('storage_locations.storage_locations_disabled')}
|
|
</div>"
|
|
end
|
|
end
|