Sha256: 3796d19c2bc3b9ae751a350b55a47afddccafd7c9da23e0334ae21c4b9faecb1

Contents?: true

Size: 975 Bytes

Versions: 4

Compression:

Stored size: 975 Bytes

Contents

== render 'fae/shared/index_header', title: "Welcome, #{current_user.full_name}", new_button: false

.main_content-sections
  section.main_content-section
    .main_content-section-area
      table.index_table.main_content-sortable
        thead
          tr
            th Name
            th Type
            th.main_table-header-modified Latest Changes
        tbody
          - @list.each do |item|
            - begin
              - parent = item.respond_to?(:fae_parent) ? item.fae_parent : nil
              - edit_path = edit_polymorphic_path([main_app, fae_scope, parent, item])
              - index_path = polymorphic_path([main_app, fae_scope, parent, item.class.to_s.pluralize.underscore])
              tr
                td.main_table-description-item
                  a href=edit_path = item.fae_display_field
                td
                  a href=index_path = item.class.to_s
                td = fae_date_format item.updated_at
            - rescue

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fae-rails-1.2.5 app/views/fae/pages/home.html.slim
fae-rails-1.2.4 app/views/fae/pages/home.html.slim
fae-rails-1.2.3 app/views/fae/pages/home.html.slim
fae-rails-1.2.2 app/views/fae/pages/home.html.slim