summaryrefslogtreecommitdiff
path: root/app/views/projects/blame/show.html.haml
blob: cadfe5a3e30def2d34d0444aba1e2af84a1d4861 (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
37
38
39
40
41
42
43
44
45
46
47
48
- @no_container = true
- page_title "Blame", @blob.path, @ref
= render "projects/commits/head"

%div{ class: container_class }
  %h3.page-title Blame view

  #blob-content-holder.tree-holder
    .file-holder
      .file-title
        = blob_icon @blob.mode, @blob.name
        %strong
          = @path
        %small= number_to_human_size @blob.size
        .file-actions
          = render "projects/blob/actions"
      .table-responsive.file-content.blame.code.js-syntax-highlight
        %table
          - current_line = 1
          - @blame_groups.each do |blame_group|
            %tr
              %td.blame-commit
                .commit
                  - commit = blame_group[:commit]
                  = author_avatar(commit, size: 36)
                  .commit-row-title
                    %strong
                      = link_to_gfm truncate(commit.title, length: 35), namespace_project_commit_path(@project.namespace, @project, commit.id), class: "cdark"
                    .pull-right
                      = link_to commit.short_id, namespace_project_commit_path(@project.namespace, @project, commit), class: "monospace"
                     
                  .light
                    = commit_author_link(commit, avatar: false)
                    authored
                    #{time_ago_with_tooltip(commit.committed_date)}
              %td.line-numbers
                - line_count = blame_group[:lines].count
                - (current_line...(current_line + line_count)).each do |i|
                  %a.diff-line-num{href: "#L#{i}", id: "L#{i}", 'data-line-number' => i}
                    = icon("link")
                    = i
                  \
                - current_line += line_count
              %td.lines
                %pre.code.highlight
                  %code
                    - blame_group[:lines].each do |line|
                      #{line}