2013-01-09 18:47:37 +01:00

25 lines
693 B
Plaintext

.note#note{:id => note.id}
.left
.user
=image_tag (note.admin.file? ? note.admin.file.square.url : ""), :class => "avatar"
=note.admin.username
.date=l note.created_at, :format => :short
.right
.links
=link_to "modifier", edit_note_path(note), :remote => true
=link_to "suprimer", note_path(note), :remote => true, :method => :delete, :confirm => "Voulez-vous vraiment supprimer cette note ?"
=markdown note.message
.bottom
=render :partial => "note_files/form", :locals => {:note => note}
#note_files.note_files{:id => note.id}=render note.note_files
:javascript
$(".note img").each(function(){
$(this).closest("p").addClass("large");
});