From 42650cef723a56925fd32d7a6b19eb0ee8abd3b7 Mon Sep 17 00:00:00 2001 From: gregoirenovel Date: Thu, 31 May 2018 17:15:19 +0200 Subject: [PATCH] Remove an unused file --- .../dossiers/_commentaires_files.html.haml | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 app/views/dossiers/_commentaires_files.html.haml 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.