mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
36 lines
885 B
Ruby
36 lines
885 B
Ruby
module ApplicationHelper
|
|
def unstable_env
|
|
return nil if Rails.env.production?
|
|
Rails.env
|
|
end
|
|
|
|
def env_style
|
|
return '' if unstable_env.nil?
|
|
"background-image: url(#{image_path(unstable_env.to_s + '.png')});"
|
|
end
|
|
|
|
def ident_for(contact)
|
|
case contact.ident_type
|
|
when 'birthday'
|
|
"#{contact.ident} [#{contact.ident_type}]"
|
|
else
|
|
"#{contact.ident} [#{contact.ident_country_code} #{contact.ident_type}]"
|
|
end
|
|
end
|
|
|
|
def creator_link(model)
|
|
return 'not present' if model.blank?
|
|
return model if model.kind_of? String
|
|
|
|
# can be api user or some other user
|
|
link_to(model.creator, ['admin', model.creator])
|
|
end
|
|
|
|
def updator_link(model)
|
|
return 'not present' if model.blank?
|
|
return model if model.kind_of? String
|
|
|
|
# can be api user or some other user
|
|
link_to(model.creator, ['admin', model.updator])
|
|
end
|
|
end
|