gitlab-org--gitlab-foss/app/views/notes/_show.html.haml

18 lines
720 B
Plaintext
Raw Normal View History

2011-11-04 13:37:38 +00:00
%li{:id => dom_id(note), :class => "note"}
= image_tag gravatar_icon(note.author.email), :class => "left", :width => 40, :style => "padding-right:5px;"
%div.note-author
%strong= note.author_name
2011-11-06 13:52:23 +00:00
%cite.cgray
2011-11-04 16:20:52 +00:00
= time_ago_in_words(note.updated_at)
ago
2011-11-04 13:37:38 +00:00
- if(note.author_id == current_user.id) || can?(current_user, :admin_note, @project)
%strong= link_to "Remove", [@project, note], :confirm => 'Are you sure?', :method => :delete, :remote => true, :class => "cred delete-note btn small"
2011-11-15 08:34:30 +00:00
2011-11-04 13:37:38 +00:00
%div.note-title
2011-10-30 13:41:57 +00:00
= markdown(note.note)
2011-10-08 21:36:38 +00:00
- if note.attachment.url
2011-11-06 13:52:23 +00:00
.right
2012-03-24 17:36:14 +00:00
%div.file
= link_to note.attachment_identifier, note.attachment.url, :target => "_blank"
2011-10-08 21:36:38 +00:00
.clear