2015-11-26 14:37:03 +05:30
|
|
|
- page_title t('sherlock.title'), t('sherlock.transaction'), t('sherlock.query')
|
|
|
|
- header_title t('sherlock.title'), sherlock_transactions_path
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
%ul.nav-links.nav.nav-tabs
|
2015-11-26 14:37:03 +05:30
|
|
|
%li.active
|
2017-08-17 22:00:37 +05:30
|
|
|
%a{ href: "#tab-general", data: { toggle: "tab" } }
|
2015-11-26 14:37:03 +05:30
|
|
|
= t('sherlock.general')
|
|
|
|
%li
|
2017-08-17 22:00:37 +05:30
|
|
|
%a{ href: "#tab-backtrace", data: { toggle: "tab" } }
|
2015-11-26 14:37:03 +05:30
|
|
|
= t('sherlock.backtrace')
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.row-content-block
|
2018-11-08 19:23:39 +05:30
|
|
|
.float-right
|
2015-11-26 14:37:03 +05:30
|
|
|
= link_to(sherlock_transaction_path(@transaction), class: 'btn') do
|
|
|
|
%i.fa.fa-arrow-left
|
|
|
|
= t('sherlock.transaction')
|
|
|
|
.oneline
|
|
|
|
= t('sherlock.query')
|
|
|
|
= @query.id
|
|
|
|
|
|
|
|
.tab-content
|
|
|
|
.tab-pane.active#tab-general
|
|
|
|
= render(partial: 'general')
|
|
|
|
|
|
|
|
.tab-pane#tab-backtrace
|
|
|
|
= render(partial: 'backtrace')
|