BigW Consortium Gitlab

_general.html.haml 945 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
.prepend-top-default
  .panel.panel-default
    .panel-heading
      %strong
        = t('sherlock.general')
    %ul.well-list
      %li
        %span.light
          #{t('sherlock.id')}:
        %strong
          = @transaction.id
      %li
        %span.light
          #{t('sherlock.type')}:
        %strong
          = @transaction.type
      %li
        %span.light
          #{t('sherlock.path')}:
        %strong
          = @transaction.path
      %li
        %span.light
          #{t('sherlock.time')}:
        %strong
          = @transaction.duration.round(2)
          = t('sherlock.seconds')
28 29 30 31 32 33
      %li
        %span.light
          #{t('sherlock.query_time')}
        %strong
          = @transaction.query_duration.round(2)
          = t('sherlock.seconds')
34 35 36 37 38 39
      %li
        %span.light
          #{t('sherlock.finished_at')}:
        %strong
          = time_ago_in_words(@transaction.finished_at)
          = t('sherlock.ago')