14 lines
441 B
Text
14 lines
441 B
Text
- if ENV['BANNER_MESSAGE'].present?
|
|
.site-banner.warning
|
|
.container
|
|
= sanitize(ENV['BANNER_MESSAGE'])
|
|
|
|
- if ENV['ADMINISTRATION_BANNER_MESSAGE'].present? && instructeur_signed_in?
|
|
.site-banner.warning
|
|
.container
|
|
= sanitize(ENV['ADMINISTRATION_BANNER_MESSAGE'])
|
|
|
|
- if ENV['USAGER_BANNER_MESSAGE'].present? && !instructeur_signed_in?
|
|
.site-banner.warning
|
|
.container
|
|
= sanitize(ENV['USAGER_BANNER_MESSAGE'])
|