Sha256: 7e312c6a55ef736e96c599e4d46043d023f74bb18287f0acb2a2560677468fdc

Contents?: true

Size: 1.13 KB

Versions: 15

Compression:

Stored size: 1.13 KB

Contents

- @window_title = "Settings"
- @page_title = "#{link_to "Settings", admin_settings_path} > Locales"

.row-fluid
  = render :partial => "/gluttonberg/admin/settings/main/sidebar"
  .span9
    .row-fluid
      .page-header
        %h1
          = @page_title.html_safe
      .subnav
        = sub_nav do
          = nav_link('New', new_admin_locale_path)

      - if @locales.empty?
        %p.empty No locales
      - else
        %table{:cellpadding => 0, :cellspacing => 0, :summary => "List of Locales", :class => "table table-bordered"}
          %thead
            %tr
              %th Locale
              %th Slug
              %th Type
              %th.controls Controls
          %tbody
            - i = 0
            - for locale in @locales
              - i += 1
              %tr{ :class => "#{i % 2 == 0? "even" : ""}"}
                %td= locale.name
                %td= locale.slug
                %td= locale.slug_type.humanize
                %td.controls
                  = link_to('Edit', edit_admin_locale_path(locale), :class => "btn")
                  = link_to "Delete", delete_admin_locale_path(locale), :class => "btn btn-danger"

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
gluttonberg-core-2.6.4 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.6.3 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.6.2 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.6.1 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.6.0 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5.9 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5.8 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5.7 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5.6 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5.5 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5.4 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5.3 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5.2 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5.1 app/views/gluttonberg/admin/settings/locales/index.html.haml
gluttonberg-core-2.5 app/views/gluttonberg/admin/settings/locales/index.html.haml