21 lines
765 B
Text
21 lines
765 B
Text
|
- if pj.attached?
|
|||
|
.pj-link
|
|||
|
- if object.virus_scan.blank? || object.virus_scan.safe?
|
|||
|
= link_to url_for(pj), target: '_blank', title: "Télécharger la pièce jointe" do
|
|||
|
%span.icon.attachment
|
|||
|
= pj.filename.to_s
|
|||
|
- if object.virus_scan.blank?
|
|||
|
(ce fichier n’a pas été analysé par notre antivirus, téléchargez-le avec précaution)
|
|||
|
|
|||
|
- else
|
|||
|
= pj.filename.to_s
|
|||
|
- if object.virus_scan.pending?
|
|||
|
(analyse antivirus en cours
|
|||
|
= link_to "rafraichir", request.path
|
|||
|
)
|
|||
|
- elsif object.virus_scan.infected?
|
|||
|
- 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é)
|