diff --git a/app/views/dossiers/_commentaires_files.html.haml b/app/views/dossiers/_commentaires_files.html.haml deleted file mode 100644 index f8414e4db..000000000 --- a/app/views/dossiers/_commentaires_files.html.haml +++ /dev/null @@ -1,22 +0,0 @@ -%h3 Fichiers des commentaires - -%br -- if @facade.commentaires_files.size > 0 - %table.table - %thead - %th.col-md-3.col-sm-3.col-xs-3 - Email - %th.col-md-2.col-sm-2.col-xs-2 - Date - %th.col-md-6.col-sm-6.col-xs-6 - Fichier - - - - @facade.commentaires_files.each do |file| - %tr - %td= file.user.nil? ? 'Accompagnateur' : file.user.email - %td= file.created_at.localtime - %td= link_to file.original_filename, file.content_url, style: 'color: green;', target: '_blank' -- else - %h4.text-primary - Pas de fichier dans le flux de commentaires.