summaryrefslogtreecommitdiff
path: root/app/views/sherlock/transactions/_general.html.haml
blob: 4287a0c32036f49cccd1b7ac1482186d7f1f5254 (plain)
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
28
29
30
31
32
33
.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')
      %li
        %span.light
          #{t('sherlock.finished_at')}:
        %strong
          = time_ago_in_words(@transaction.finished_at)
          = t('sherlock.ago')