BigW Consortium Gitlab

show.html.haml 713 Bytes
Newer Older
1 2 3
- page_title t('sherlock.title'), t('sherlock.transaction'), t('sherlock.query')
- header_title t('sherlock.title'), sherlock_transactions_path

4
%ul.nav-links
5
  %li.active
6
    %a{ href: "#tab-general", data: { toggle: "tab" } }
7 8
      = t('sherlock.general')
  %li
9
    %a{ href: "#tab-backtrace", data: { toggle: "tab" } }
10 11
      = t('sherlock.backtrace')

12
.row-content-block
13 14 15 16 17 18 19 20 21 22 23 24 25 26
  .pull-right
    = 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')