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

10 lines
344 B
Text
Raw Normal View History

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
= link_to "Edit", edit_project_snippet_path(@project, @snippet), class: "btn btn-small pull-right", title: 'Edit Snippet'
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"