Sha256: 54a01f89a0b6ffdf6ff8d263e78b3a289e6afbd9f119ad673891b8ee2687d7ab

Contents?: true

Size: 1.25 KB

Versions: 8

Compression:

Stored size: 1.25 KB

Contents

#list
  .container-fluid
    .col-sm-10.col-sm-offset-1
      h1
        | All errors

      - total_count = @errors.total_count.to_i
      .row
        .col-md-6
          .clearfix.total-count= "#{total_count} #{"error".pluralize(total_count)}"


      table.table.table-condensed.table-striped
        thead
          tr
            th.time-column Last seen
            th.user-column By
            th.class-column Class Name
            th.message-column Message
            th.count-column Count
        tbody
          - @errors.each do |error|
            tr.errdo
              td.errdo.time-column
                = link_to time_ago_in_words(error.last_occurred_at) + " ago", error, class: "errdo"
              td.errdo.user-column
                = link_to user_show_string(error.last_experiencer),
                  user_show_path(error.last_experiencer), class: "errdo"
              td.errdo.class-column
                = link_to error.exception_class_name, error, class: "errdo"
              td.errdo.message-column
                = link_to error.exception_message, error, class: "errdo"
              td.errdo.count-column
                = link_to error.occurrence_count, error, class: "errdo"

      .row
        .col-md-6 = paginate(@errors,remote: true)

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
errdo-0.11.4 app/views/errdo/errors/index.html.slim
errdo-0.11.3 app/views/errdo/errors/index.html.slim
errdo-0.11.2 app/views/errdo/errors/index.html.slim
errdo-0.11.1 app/views/errdo/errors/index.html.slim
errdo-0.11.0 app/views/errdo/errors/index.html.slim
errdo-0.10.0 app/views/errdo/errors/index.html.slim
errdo-0.9.1 app/views/errdo/errors/index.html.slim
errdo-0.9.0 app/views/errdo/errors/index.html.slim