Sha256: fe4ee71aae84816faef764aa7ab8b111faab65994dc31d1a62c10ce88cd22c41

Contents?: true

Size: 1.13 KB

Versions: 11

Compression:

Stored size: 1.13 KB

Contents

section.content
  .row
    .col-md-12
      .box
        .box-body.table-responsive
          table#datatable.table.table-bordered.table-striped
            thead
              tr
                th
                  .col-md-11
                    = Hicube::Page.human_attribute_name(:title)
                  .col-md-1
            tbody
              - @pages.parents.each do |p|
                tr 
                  td
                    .col-md-11
                      = p.title
                    .col-md-1
                      = link_to t('edit'), edit_page_path(p), class: 'btn btn-sm btn-primary'
                - p.children.each do |child|
                  tr  
                    td
                      .col-xs-11
                        |            
                        i.fa.fa-angle-double-right
                        '   
                        = child.title
                      .col-xs-1
                        = link_to t('edit'), edit_page_path(child), class: 'btn btn-sm btn-primary'                
        .box-footer
          = link_to 'New Page', new_page_path, class: 'btn btn-flat btn-success pull-right'

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
hicube-0.0.11 app/views/hicube/pages/index.html.slim
hicube-0.0.10 app/views/hicube/pages/index.html.slim
hicube-0.0.9 app/views/hicube/pages/index.html.slim
hicube-0.0.8 app/views/hicube/pages/index.html.slim
hicube-0.0.7 app/views/hicube/pages/index.html.slim
hicube-0.0.6 app/views/hicube/pages/index.html.slim
hicube-0.0.5 app/views/hicube/pages/index.html.slim
hicube-0.0.4 app/views/hicube/pages/index.html.slim
hicube-0.0.3 app/views/hicube/pages/index.html.slim
hicube-0.0.2 app/views/hicube/pages/index.html.slim
hicube-0.0.1 app/views/hicube/pages/index.html.slim