summaryrefslogtreecommitdiff
path: root/app/views/sherlock/transactions/show.html.haml
blob: 565b337d446aff4542b5eb9256e08b23b1940eb0 (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
- page_title t('sherlock.title'), t('sherlock.transaction')
- header_title t('sherlock.title'), sherlock_transactions_path

%ul.nav-links.nav.nav-tabs
  %li.active
    %a{ href: "#tab-general", data: { toggle: "tab" } }
      = t('sherlock.general')
  %li
    %a{ href: "#tab-queries", data: { toggle: "tab" } }
      = t('sherlock.queries')
      %span.badge.badge-pill
        #{@transaction.queries.length}
  %li
    %a{ href: "#tab-file-samples", data: { toggle: "tab" } }
      = t('sherlock.file_samples')
      %span.badge.badge-pill
        #{@transaction.file_samples.length}

.row-content-block
  .float-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')