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

10 lines
344 B
Plaintext
Raw Normal View History

2012-12-12 18:42:08 +01: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 23:07:10 +02:00
2012-03-10 22:57:53 +01:00
%br
%div= render 'blob'
2012-12-02 20:43:39 +01:00
%div#notes= render "notes/notes_with_form"