blob: c4989434d33bce16a180417071bfc8c07bc46732 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
- cache(['application_footer', I18n.locale]) do
%footer
%ul{:class => 'nav nav-pills'}
- if !GsParameter.get('GEMEINSCHAFT_BUILDNAME').nil?
%li
%a{:href => '#', :rel => "tooltip", :title => "Build ##{GsParameter.get('GEMEINSCHAFT_BUILDNAME')}", :'data-trigger' => 'hover'}
= "Gemeinschaft Version #{GsParameter.get('GEMEINSCHAFT_VERSION')}"
- else
%li
%a{:href => "http://amooma.de/gemeinschaft/gs5"} Gemeinschaft Version #{GsParameter.get('GEMEINSCHAFT_VERSION')}
- if GuiFunction.display?('amooma_commercial_support_link_in_footer', current_user)
%li
%a{:href => "http://amooma.de"} Support und Consulting
- if GuiFunction.display?('gemeinschaft_mailinglist_link_in_footer', current_user)
%li
%a{:href => "https://groups.google.com/group/gs5-users/"} Mailingliste
%li{:class => 'pull-right'}
= link_to 'brought to you by AMOOMA GmbH', 'http://amooma.de'
|