{{ object.name }}
| {{ object.size|filesizeformat }}
|
{% if object.is_binary %}
{% include "scanpipe/includes/dropdown_hoverable.html" with trigger='Binary' content="Binary executable or data file. Text content is extracted from binary." only %}
{% endif %}
{% if object.is_text %}
{% include "scanpipe/includes/dropdown_hoverable.html" with trigger='Text' content="Plain text file." only %}
{% endif %}
{% if object.is_archive %}
{% include "scanpipe/includes/dropdown_hoverable.html" with trigger='Archive' content="Archive or compressed file. Not scanned directly." only %}
{% endif %}
{% if object.is_key_file %}
{% include "scanpipe/includes/dropdown_hoverable.html" with trigger='Key file' content="Top-level file with key content and metadata and either a legal, readme or package manifest." only %}
{% endif %}
{% if object.is_media %}
{% include "scanpipe/includes/dropdown_hoverable.html" with trigger='Media' content="Image, sound, video or similar media file." only %}
{% endif %}
|