{{ object.name }}
| {{ object.size|filesizeformat }} |
{% if object.is_binary %}
{% include "scanpipe/dropdowns/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/dropdowns/dropdown_hoverable.html" with trigger='Text' content="Plain text file." only %}
{% endif %}
{% if object.is_archive %}
{% include "scanpipe/dropdowns/dropdown_hoverable.html" with trigger='Archive' content="Archive or compressed file. Not scanned directly." only %}
{% endif %}
{% if object.is_media %}
{% include "scanpipe/dropdowns/dropdown_hoverable.html" with trigger='Media' content="Image, sound, video or similar media file." only %}
{% endif %}
{% if object.is_legal %}
{% include "scanpipe/dropdowns/dropdown_hoverable.html" with trigger='Legal' content="Legal, license-related file such as a COPYING or LICENSE file." only %}
{% endif %}
{% if object.is_manifest %}
{% include "scanpipe/dropdowns/dropdown_hoverable.html" with trigger='Manifest' content="Package manifest file such as a Maven pom.xml or a npm package.json" only %}
{% endif %}
{% if object.is_readme %}
{% include "scanpipe/dropdowns/dropdown_hoverable.html" with trigger='Readme' content="README file" only %}
{% endif %}
{% if object.is_top_level %}
{% include "scanpipe/dropdowns/dropdown_hoverable.html" with trigger='Top level' content="Top-level file located either at the root of a package or in a well-known common location." only %}
{% endif %}
{% if object.is_key_file %}
{% include "scanpipe/dropdowns/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 %}