Sha256: af6602d1642a069e9541f2af82e5af0e9724919882fc88885beac5772db48702

Contents?: true

Size: 1.2 KB

Versions: 4

Compression:

Stored size: 1.2 KB

Contents

.card
  .card-header
    = @instance.identifier
    = "-"
    = @instance.created_at.strftime("%c")
  .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 => group_instance_path(@instance)} List

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


    - content_for :breadcrum do
      %ol.breadcrumb
        %li.breadcrumb-item
          %a{:href => analysis_groups_path} Analysis Groups
        %li.breadcrumb-item
          %a{:href => analysis_group_path(@instance.analysis_group.id)}= @instance.analysis_group.name
        %li.breadcrumb-item
          %a{:href => "#"}= @instance.identifier

    %table.table.border.border-secondary.border-top-0
      %thead.bg-secondary.text-white
        %tr.d-flex
          %th.col-8= order_link "Location", 'location', @instance
          %th.col-2= order_link "Method", 'method', @instance
          %th.col-2 Times
      %tbody
        - @instance.count_methods.each_pair do |location, hash|
          %tr.d-flex
            %td.col-8= location
            %td.col-2= hash[:item].method_id
            %td.col-2= hash[:count]

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
better_rails_debugger-0.2.1 app/views/better_rails_debugger/group_instances/tracer.html.haml
better_rails_debugger-0.2.0 app/views/better_rails_debugger/group_instances/tracer.html.haml
better_rails_debugger-0.1.1 app/views/better_rails_debugger/group_instances/tracer.html.haml
better_rails_debugger-0.0.4 app/views/better_rails_debugger/group_instances/tracer.html.haml