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

19 lines
465 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
2011-12-08 00:35:57 +01:00
%hr
2011-10-16 23:07:10 +02:00
2011-12-08 00:35:57 +01:00
.view_file
.view_file_header
%strong= @snippet.file_name
.data.no-padding
:erb
<%= raw @snippet.colorize %>
2011-10-16 23:07:10 +02:00
= render "notes/notes", :tid => @snippet.id, :tt => "snippet"