2015-11-26 14:37:03 +05:30
|
|
|
.prepend-top-default
|
2018-11-08 19:23:39 +05:30
|
|
|
.card
|
|
|
|
.card-header
|
2015-11-26 14:37:03 +05:30
|
|
|
%strong
|
|
|
|
= t('sherlock.general')
|
2018-11-08 19:23:39 +05:30
|
|
|
%ul.content-list
|
2015-11-26 14:37:03 +05:30
|
|
|
%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-12-23 02:04:40 +05:30
|
|
|
%li
|
|
|
|
%span.light
|
|
|
|
#{t('sherlock.query_time')}
|
|
|
|
%strong
|
|
|
|
= @transaction.query_duration.round(2)
|
|
|
|
= t('sherlock.seconds')
|
2015-11-26 14:37:03 +05:30
|
|
|
%li
|
|
|
|
%span.light
|
|
|
|
#{t('sherlock.finished_at')}:
|
|
|
|
%strong
|
2018-10-15 14:42:47 +05:30
|
|
|
= time_ago_with_tooltip @transaction.finished_at
|