9 lines
565 B
Plaintext
9 lines
565 B
Plaintext
.note_file#note_file{:id => note_file.id}
|
|
-ext = File.extname(note_file.file.path)[1..-1]
|
|
%div{:style => "display:inline-block;text-align:center;width:30px;"}=image_tag "admin/file_types/"+ext+".png", :class => "icon"
|
|
=l note_file.created_at, :format => :short
|
|
=note_file.name
|
|
=link_to "supprimer", note_file_path(note_file), :remote => true, :method => :delete, :confirm => "Voulez-vous vraiment supprimer ce fichier ?"
|
|
=link_to "voir", note_file_path(note_file), :target => "_blank"
|
|
=link_to "télécharger", note_file_path(note_file, :download => true)
|
|
|