2015-11-04 13:13:19 -05:00
|
|
|
.prepend-top-default
|
2018-04-10 13:11:34 -04:00
|
|
|
.card
|
|
|
|
.card-header
|
2015-11-04 13:13:19 -05:00
|
|
|
%strong
|
|
|
|
= t('sherlock.general')
|
2018-05-29 11:08:35 -04:00
|
|
|
%ul.content-list
|
2015-11-04 13:13:19 -05:00
|
|
|
%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')
|
2015-11-19 06:33:58 -05:00
|
|
|
%li
|
|
|
|
%span.light
|
|
|
|
#{t('sherlock.query_time')}
|
|
|
|
%strong
|
|
|
|
= @transaction.query_duration.round(2)
|
|
|
|
= t('sherlock.seconds')
|
2015-11-04 13:13:19 -05:00
|
|
|
%li
|
|
|
|
%span.light
|
|
|
|
#{t('sherlock.finished_at')}:
|
|
|
|
%strong
|
2018-04-25 11:58:56 -04:00
|
|
|
= time_ago_with_tooltip @transaction.finished_at
|