gitlabhq/app/views/snippets/show.html.haml

31 lines
871 B
Plaintext
Raw Normal View History

= render "projects/project_head"
%h3
= @snippet.title
%small= @snippet.file_name
- if can?(current_user, :admin_snippet, @project) || @snippet.author == current_user
= link_to "Edit", edit_project_snippet_path(@project, @snippet), class: "btn small right"
2011-10-16 23:07:10 +02:00
2012-03-10 22:57:53 +01:00
%br
2012-11-26 04:14:05 +01:00
2012-10-03 12:42:17 +02:00
%div
.file_holder
.file_title
%i.icon-file
%strong= @snippet.file_name
%span.options
= link_to "raw", raw_project_snippet_path(@project, @snippet), class: "btn very_small", target: "_blank"
.file_content.code
2012-11-23 20:31:09 +01:00
- unless @snippet.content.empty?
%div{class: current_user.dark_scheme ? "black" : "white"}
= preserve do
= raw Pygments.highlight(@snippet.content, formatter: :gitlab)
- else
%h4.nothing_here_message Empty file
2011-10-16 23:07:10 +02:00
2012-10-03 12:42:17 +02:00
2012-11-26 04:14:05 +01:00
.clearfix
%div#notes
2012-10-03 12:42:17 +02:00
= render "notes/notes_with_form", tid: @snippet.id, tt: "snippet"