% if Setting.any? %> <% if Fullstack::Cms.localized? %> <%= nav :class => "nav-pills" do %> <%= content_tag :li, :class => (:active if @locale.blank?) do %> <%= link_to t("fullstack.cms.commons", :default => "Commons"), request.path %> <% end %> <% I18n.available_locales.each do |locale| %> <%= content_tag :li, :class => (:active if @locale == locale.to_s) do %> <%= link_to t("locale_names.#{locale}", :default => "#{locale}".humanize), "?locale=#{locale}" %> <% end %> <% end %> <% end %> <% end %> <%= tabs :class => "tabs-left" do |t| %> <% @groups.each do |g,settings| %> <%= t.pane t(g, :scope => "fullstack.admin.groups", :default => g.to_s.humanize) do %>
<%= link_to t(stg.key, :scope => "helpers.label", :default => stg.key.to_s.humanize), [:edit, :admin, stg] %> | <%= locale ? t("locale_names.#{locale}", :default => "#{locale}".humanize) : "-" %> | <% if stg.value %> <%= truncate stg.options[:markup] ? "#markup" : "#{stg.value}" %> <% else %> (<%= t('fullstack.cms.empty', :default => "Empty") %>) <% end %> |
---|