2019-03-01 17:16:56 +01:00
|
|
|
|
- if pj.attached?
|
|
|
|
|
.pj-link
|
2019-05-16 18:59:34 +02:00
|
|
|
|
- if pj.virus_scanner.safe? || !pj.virus_scanner.started?
|
2019-05-02 11:37:27 +02:00
|
|
|
|
= link_to url_for(pj), target: '_blank', rel: 'noopener', title: "Télécharger la pièce jointe" do
|
2019-03-01 17:16:56 +01:00
|
|
|
|
%span.icon.attachment
|
|
|
|
|
= pj.filename.to_s
|
2019-05-16 18:59:34 +02:00
|
|
|
|
- if !pj.virus_scanner.started?
|
2019-03-01 17:16:56 +01:00
|
|
|
|
(ce fichier n’a pas été analysé par notre antivirus, téléchargez-le avec précaution)
|
|
|
|
|
|
|
|
|
|
- else
|
|
|
|
|
= pj.filename.to_s
|
2019-04-25 12:56:25 +02:00
|
|
|
|
- if pj.virus_scanner.pending?
|
2019-03-01 17:16:56 +01:00
|
|
|
|
(analyse antivirus en cours
|
|
|
|
|
= link_to "rafraichir", request.path
|
|
|
|
|
)
|
2019-04-25 12:56:25 +02:00
|
|
|
|
- elsif pj.virus_scanner.infected?
|
2019-03-01 17:16:56 +01:00
|
|
|
|
- if user_can_upload
|
|
|
|
|
(virus détecté, merci d’envoyer un autre fichier)
|
|
|
|
|
- else
|
|
|
|
|
(virus détecté, le téléchargement de ce fichier est bloqué)
|