{% set fileset = entity %} {% import "entity_macros.html" as entity_macros %} {% extends "base.html" %} {% block fullbody %}

fileset {{ entity.ident }}

{% if entity.extra %}

Extra Metadata (raw JSON)

{{ entity_macros.extra_metadata(entity.extra) }} {% endif %}

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 %}