Sha256: 716485001044851625980da5249461b7d87ba3bd071a0746c2954833e6ecb955

Contents?: true

Size: 1.81 KB

Versions: 40

Compression:

Stored size: 1.81 KB

Contents

<% 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 %>


 <table class="table table-striped table-bordered">
        <% settings.each do |stg| %>
         
              <tr>
                <th style="width: 20%">
                  <%= link_to t(stg.key, :scope => "helpers.label", :default => stg.key.to_s.humanize), [:edit, :admin, stg] %>
                </th>

                <% if Fullstack::Cms.localized? %>
                  <td style="width: 10%">
                    <%= stg.locale ? t("locale_names.#{stg.locale}", :default => "#{stg.locale}".humanize) : "-" %>
                  </td>
                <% end %>

                <td>
                  <% if stg.value %>
                  <%= truncate stg.options[:markup] ? "#markup" : "#{stg.value}" %>
                  <% else %>
                    (<%= t('fullstack.cms.empty', :default => "Empty") %>)
                  <% end %>
                </td>
              </tr>

          <% end %>
  </table>


  
        <% end %>
      <% end %>

  <% end %>

<% end %>

 

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
fullstack-cms-0.3.26 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.25 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.24 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.23 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.22 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.21 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.20 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.19 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.18 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.17 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.16 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.15 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.14 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.13 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.12 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.11 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.10 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.9 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.8 app/views/admin/settings/_collection.html.erb
fullstack-cms-0.3.7 app/views/admin/settings/_collection.html.erb