gitlab-org--gitlab-foss/app/views/snippets/show.html.haml

12 lines
355 B
Text
Raw Normal View History

= render "projects/project_head"
2012-12-12 12:42:08 -05:00
%h3.page_title
= @snippet.title
%small= @snippet.file_name
- if can?(current_user, :admin_snippet, @project) || @snippet.author == current_user
2013-01-30 09:40:43 -05:00
= link_to "Edit", edit_project_snippet_path(@project, @snippet), class: "btn btn-small pull-right"
2011-10-16 17:07:10 -04:00
2012-03-10 16:57:53 -05:00
%br
%div= render 'blob'
2012-12-02 14:43:39 -05:00
%div#notes= render "notes/notes_with_form"