2012-02-08 00:00:49 +01:00
|
|
|
= render "projects/project_head"
|
|
|
|
|
|
|
|
%h3
|
|
|
|
= @snippet.title
|
|
|
|
%small= @snippet.file_name
|
|
|
|
- if can?(current_user, :admin_snippet, @project) || @snippet.author == current_user
|
2012-08-11 00:07:50 +02:00
|
|
|
= 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-07-10 19:15:33 +02:00
|
|
|
.file_holder
|
|
|
|
.file_title
|
|
|
|
%i.icon-file
|
|
|
|
%strong= @snippet.file_name
|
|
|
|
%span.options
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to "raw", raw_project_snippet_path(@project, @snippet), class: "btn very_small", target: "_blank"
|
2012-07-10 19:15:33 +02:00
|
|
|
.file_content.code
|
2012-08-11 00:07:50 +02:00
|
|
|
%div{class: current_user.dark_scheme ? "black" : ""}
|
2012-07-10 19:15:33 +02:00
|
|
|
= raw @snippet.colorize(options: { linenos: 'True'})
|
2011-10-16 23:07:10 +02:00
|
|
|
|
2012-08-11 00:07:50 +02:00
|
|
|
= render "notes/notes", tid: @snippet.id, tt: "snippet"
|