2019-03-01 17:16:56 +01:00
|
|
|
|
- if pj.attached?
|
|
|
|
|
.pj-link
|
2019-05-02 11:37:27 +02:00
|
|
|
|
- if object.virus_scan_safe? || object.virus_scan_no_scan?
|
|
|
|
|
= 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-02 11:37:27 +02:00
|
|
|
|
- if object.virus_scan_no_scan?
|
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-05-02 11:37:27 +02:00
|
|
|
|
- if object.virus_scan_pending?
|
2019-03-01 17:16:56 +01:00
|
|
|
|
(analyse antivirus en cours
|
|
|
|
|
= link_to "rafraichir", request.path
|
|
|
|
|
)
|
2019-05-02 11:37:27 +02:00
|
|
|
|
- elsif object.virus_scan_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é)
|