Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_backtrace.html.haml « queries « sherlock « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 425113ba325c6b5f99faeeedcd79b77b878a1fe9 (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
.gl-mt-3
  .card
    .card-header
      %strong
        = t('sherlock.application_backtrace')
    %ul.content-list
      - @query.application_backtrace.each do |location|
        %li
          %strong
            - if defined?(BetterErrors)
              = link_to(location.path, BetterErrors.editor.url(location.path, location.line))
            - else
              = location.path
          %small.light
            = t('sherlock.line')
            = location.line

  .card
    .card-header
      %strong
        = t('sherlock.full_backtrace')
    %ul.content-list
      - @query.backtrace.each do |location|
        %li
          - if location.application?
            %strong= location.path
          - else
            = location.path
          %small.light
            = t('sherlock.line')
            = location.line