gitlabhq/app/views/snippets/show.html.haml
2012-11-26 07:14:05 +03:00

12 lines
368 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", tid: @snippet.id, tt: "snippet"