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

16 lines
330 B
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
%ul#notes-list
- @notes.each do |note|
2011-10-14 23:05:41 +02:00
- next unless note.author
2011-10-08 23:36:38 +02:00
= render :partial => "notes/show", :locals => {:note => note}
%br
%br
- if can? current_user, :write_note, @project
= render "notes/form"
:javascript
$('.delete-note').live('ajax:success', function() {
$(this).closest('li').fadeOut(); });