{% set fileset = entity %} {% set entity_view = "overview" %} {% import "entity_macros.html" as entity_macros %} {% extends "entity_base.html" %} {% block entity_main %}

Releases

{% if entity.releases != [] %} {{ entity_macros.release_list(entity.releases) }} {% else %}

This File Set is not associated with any fatcat release. {% endif %}

File Manifest ({{ fileset.manifest|count }})

{% if fileset.manifest %}
{% for file in fileset.manifest %}
{{ file.path }} ({{ file.size|filesizeformat }}{% if file.extra.mimetype %}, {{ file.extra.mimetype }}{% endif %})
{% if file.md5 %} md5:{{ file.md5 }}
{% endif %} {% if file.sha1 %} sha1:{{ file.sha1 }}
{% endif %} {% if file.sha256 %}sha256:{{ file.sha256 }}
{% endif %}
{% endfor %}
{% else %} This File Set is empty (contains no files). {% endif %}

Base URLs

{% if entity.urls %} {{ entity_macros.url_list(entity.urls) }} {% else %} No known public URL, mirror, or archive for this File Set. {% endif %}
{% if fileset._total_size != None %}

Total Size  {{ fileset._total_size|filesizeformat }}

{% endif %} {{ entity_macros.fatcat_bits(entity, "fileset", "", editgroup) }}
{% endblock %}