Sha256: 476bcba69ea0c0c6b49312d7f762ec73e3a896be52c7fce0afe9a2af62792632

Contents?: true

Size: 1.29 KB

Versions: 95

Compression:

Stored size: 1.29 KB

Contents

- @page_title = t('snippets') + ' - ' + default_page_title

.outset
  = render_region :top
  %table.index#snippets
    %thead
      %tr
        - render_region :thead do |thead|
          - thead.title_header do
            %th.name= t('snippet')
          - thead.actions_header do
            %th.actions{:style=>'width:9em'}= t('modify')
    %tbody
      - if @snippets.any?
        - @snippets.each do |snippet|
          %tr[snippet]
            - render_region :tbody, :locals => {:snippet => snippet} do |tbody|
              - tbody.title_cell do
                %td.name
                  = link_to edit_admin_snippet_url(snippet) do
                    %i.far.fa-sticky-note
                    = snippet.name
              - tbody.actions_cell do
                %td.actions
                  = link_to remove_admin_snippet_url(snippet), :class => 'action' do
                    %i.fas.fa-minus-circle
                    = t('remove')
      - else
        %tr
          %td.empty{:colspan => admin.snippet.index.tbody.length}= t('no_snippets')

- render_region :bottom do |bottom|
  - bottom.new_button do
    #actions
      = pagination_for(@snippets)
      %ul
        %li
          = link_to new_admin_snippet_url, class: 'action_button' do
            %i.fas.fa-plus-circle
            =t('new_snippet')

Version data entries

95 entries across 95 versions & 1 rubygems

Version Path
trusty-cms-7.0.22 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.21 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.20 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.19 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.18 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.17 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.16 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.14 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.13 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.12 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.15 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.9.1 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.11 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.10 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.9 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.8 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.7 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.6 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.5 app/views/admin/snippets/index.html.haml
trusty-cms-7.0.4 app/views/admin/snippets/index.html.haml