Sha256: 4879cf0c86ef8d88b27b35db7d03f4966873ffd4f953c5d406320a132de144e6

Contents?: true

Size: 1.26 KB

Versions: 7

Compression:

Stored size: 1.26 KB

Contents

.card
  .card-header
    Analysis Groups
  .card-body

    - content_for :header_nav do
      %ul.nav.navbar-nav.d-md-down-none
        %li.nav-item
          %a.nav-link.navbar-toggler.sidebar-toggler{:href => "#"} ☰
        %li.nav-item.px-3
          %a.nav-link{:href => new_analysis_group_path} New

      %ul.navbar-nav.ml-md-auto


    - content_for :breadcrum do
      %ol.breadcrumb
        %li.breadcrumb-item.active
          %a{:href => "#"} Analysis Groups

    %table.table.border.border-secondary.border-top-0
      %thead.bg-secondary.text-white
        %tr.d-flex
          %th.col-8 Name
          %th.col-2 ID
          %th.col-2 Actions
      %tbody
        - @groups.each do |group|
          %tr.d-flex
            %td.col-8= link_to group.name, analysis_group_path(group.id)
            %td.col-2= group.id
            %td.col-2
              = link_to "Inspect", analysis_group_path(group.id), class: 'btn btn-sm btn-secondary'
              = link_to "Edit", edit_analysis_group_path(group.id), class: 'btn btn-sm btn-info'
              = link_to "Delete", analysis_group_path(group.id), data: {  confirm: 'Are you sure?'}, method: :delete, class: 'btn btn-sm btn-danger'
    = will_paginate @groups, renderer: WillPaginate::ActionView::BootstrapLinkRenderer

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
better_rails_debugger-0.2.1 app/views/better_rails_debugger/analysis_groups/index.html.haml
better_rails_debugger-0.2.0 app/views/better_rails_debugger/analysis_groups/index.html.haml
better_rails_debugger-0.1.1 app/views/better_rails_debugger/analysis_groups/index.html.haml
better_rails_debugger-0.0.4 app/views/better_rails_debugger/analysis_groups/index.html.haml
better_rails_debugger-0.0.3 app/views/better_rails_debugger/analysis_groups/index.html.haml
better_rails_debugger-0.0.2 app/views/better_rails_debugger/analysis_groups/index.html.haml
better_rails_debugger-0.0.1 app/views/better_rails_debugger/analysis_groups/index.html.haml