{% set webcapture = 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 Web Capture is not associated with any fatcat release. {% endif %}

Archive URLs

{% if webcapture.archive_urls != None %} {% for url in webcapture.archive_urls %}
{{ url.rel }} {% if url.rel == "wayback" %} {{ url.url }}{{ webcapture._wayback_suffix }} {% else %} {{ url.url }} {% endif %} {% endfor %}
{% else %} No known public archive for this webcapture. {% endif %}

CDX Rows ({{ webcapture.cdx|count }})

{% if webcapture.cdx %}
{% for row in webcapture.cdx %}
{{ row.timestamp.strftime("%Y-%m-%d %H:%M:%S") }} {% if row.mimetype %}| {{ row.mimetype }} {% endif %} {% if row.size %}| {{ row.size|filesizeformat }} {% endif %}
{% if row.sha1 %}sha1:{{ row.sha1 }}
{% endif %} {% if row.sha256 %}sha256:{{ row.sha256 }}
{% endif %}
{% endfor %}
{% else %} This web capture is empty (contains no resources). {% endif %}
{% if webcapture.state == 'active' and webcapture.archive_urls != [] and webcapture.archive_urls[0].rel == "wayback" %} View Web Archive {% endif %} {% if webcapture.timestamp != None %}

Capture Time  {{ webcapture.timestamp.strftime("%Y-%m-%d %H:%M:%S") }}

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