Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_general.html.haml « transactions « sherlock « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8533b130da684d588917991f92e67acd6715d087 (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
34
35
36
37
38
39
.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.query_time')}
        %strong
          = @transaction.query_duration.round(2)
          = t('sherlock.seconds')
      %li
        %span.light
          #{t('sherlock.finished_at')}:
        %strong
          = time_ago_in_words(@transaction.finished_at)
          = t('sherlock.ago')