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
|
|
|
|
= 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
|
|
|
|
#tree-holder
|
|
|
|
#tree-content-holder
|
|
|
|
.view_file
|
|
|
|
.view_file_header
|
2012-05-15 18:35:18 +02:00
|
|
|
%i.icon-file
|
2012-03-10 22:57:53 +01:00
|
|
|
%strong= @snippet.file_name
|
2012-06-12 20:41:46 +02:00
|
|
|
%span.options
|
|
|
|
= link_to "raw", raw_project_snippet_path(@project, @snippet), :class => "btn very_small", :target => "_blank"
|
2012-03-10 22:57:53 +01:00
|
|
|
.view_file_content
|
2012-04-20 23:21:12 +02:00
|
|
|
%div{:class => current_user.dark_scheme ? "black" : ""}
|
|
|
|
= raw @snippet.colorize(options: { linenos: 'True'})
|
2011-10-16 23:07:10 +02:00
|
|
|
|
2012-02-24 21:36:44 +01:00
|
|
|
= render "notes/notes", :tid => @snippet.id, :tt => "snippet"
|