2015-11-26 14:37:03 +05:30
|
|
|
- page_title t('sherlock.title'), t('sherlock.transaction')
|
|
|
|
- header_title t('sherlock.title'), sherlock_transactions_path
|
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
%ul.nav-links
|
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-queries", data: { toggle: "tab" } }
|
2015-11-26 14:37:03 +05:30
|
|
|
= t('sherlock.queries')
|
|
|
|
%span.badge
|
|
|
|
#{@transaction.queries.length}
|
|
|
|
%li
|
2017-08-17 22:00:37 +05:30
|
|
|
%a{ href: "#tab-file-samples", data: { toggle: "tab" } }
|
2015-11-26 14:37:03 +05:30
|
|
|
= t('sherlock.file_samples')
|
|
|
|
%span.badge
|
|
|
|
#{@transaction.file_samples.length}
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
.row-content-block
|
2015-11-26 14:37:03 +05:30
|
|
|
.pull-right
|
|
|
|
= link_to(sherlock_transactions_path, class: 'btn') do
|
|
|
|
%i.fa.fa-arrow-left
|
|
|
|
= t('sherlock.all_transactions')
|
|
|
|
.oneline
|
|
|
|
= t('sherlock.transaction')
|
|
|
|
= @transaction.id
|
|
|
|
|
|
|
|
.tab-content
|
|
|
|
.tab-pane.active#tab-general
|
|
|
|
= render(partial: 'general')
|
|
|
|
|
|
|
|
.tab-pane#tab-queries
|
|
|
|
= render(partial: 'queries')
|
|
|
|
|
|
|
|
.tab-pane#tab-file-samples
|
|
|
|
= render(partial: 'file_samples')
|