gitlab-org--gitlab-foss/app/views/projects/blame/show.html.haml

35 lines
1.2 KiB
Plaintext

%h3.page-title Blame view
#tree-holder.tree-holder
.file-holder
.file-title
%i.icon-file
%span.file_name
= @path
%small= number_to_human_size @blob.size
%span.options= render "projects/blob/actions"
.file-content.blame.highlight
%table
- @blame.each do |commit, lines, since|
- commit = Commit.new(commit)
%tr
%td.blame-commit
%span.commit
= link_to commit.short_id(8), project_commit_path(@project, commit), class: "commit_short_id"
 
= commit_author_link(commit, avatar: true, size: 16)
 
= link_to_gfm truncate(commit.title, length: 20), project_commit_path(@project, commit.id), class: "row_title"
%td.lines.blame-numbers
%pre
- (since...(since + lines.count)).each do |i|
= i
\
%td.lines
%pre
%code{ class: highlightjs_class(@blob.name) }
:erb
<% lines.each do |line| %>
<%= line %>
<% end %>