gitlabhq/app/views/snippets/show.html.haml
2012-12-03 22:51:56 +01:00

12 lines
335 B
Plaintext

= 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"
%br
%div= render 'blob'
%div#notes= render "notes/notes_with_form"