gitlabhq/app/views/notes/_show.html.haml

22 lines
763 B
Text
Raw Normal View History

%li{id: dom_id(note), class: "note"}
= image_tag gravatar_icon(note.author.email), class: "avatar"
2011-11-04 09:37:38 -04:00
%div.note-author
%strong= note.author_name
2012-06-15 18:53:00 +03:00
= link_to "##{dom_id(note)}", name: dom_id(note) do
%cite.cgray
= time_ago_in_words(note.updated_at)
ago
2011-11-04 09:37:38 -04:00
- if(note.author_id == current_user.id) || can?(current_user, :admin_note, @project)
= link_to [@project, note], confirm: 'Are you sure?', method: :delete, remote: true, class: "cred delete-note btn very_small" do
2012-07-29 01:34:51 +03:00
%i.icon-trash
Remove
2011-11-15 12:34:30 +04:00
2011-11-04 09:37:38 -04:00
%div.note-title
= preserve do
= markdown(note.note)
2011-10-09 00:36:38 +03:00
- if note.attachment.url
2011-11-06 15:52:23 +02:00
.right
2012-03-24 14:36:14 -03:00
%div.file
= link_to note.attachment_identifier, note.attachment.url, target: "_blank"
2011-10-09 00:36:38 +03:00
.clear