{% extends "base.html" %} {# Copyright The IETF Trust 2024, All Rights Reserved #} {% load django_bootstrap5 ietf_filters origin static %} {% block title %}Investigate{% endblock %} {% block pagehead %} {% endblock %} {% block content %} {% origin %}

Investigate

{% csrf_token %} {% bootstrap_form form %}
{% if results %}
{% if results.can_verify %}

These can be authenticated

{% for path in results.can_verify %} {% with url=path|url_for_path %} {% endwith %} {% endfor %}
Name Last Modified On Link Source
{{ path.name }} {% if path|mtime_is_epoch %} Timestamp has been lost (is Unix Epoch) {% else %} {{ path|mtime|date:"DATETIME_FORMAT" }} {% endif %} {{ url }} {{ path }}
{% else %}

Nothing with this name fragment can be authenticated

{% endif %}
{% if results.unverifiable_collections %}

These are in the archive, but cannot be authenticated

{% for path in results.unverifiable_collections %} {% with url=path|url_for_path %} {% endwith %} {% endfor %}
Name Last Modified On Link Source
{{ path.name }} {% if path|mtime_is_epoch %} Timestamp has been lost (is Unix Epoch) {% else %} {{ path|mtime|date:"DATETIME_FORMAT" }} {% endif %} {{ url }} {{ path }}
{% endif %} {% if results.unexpected %}

These are unexpected and we do not know what their origin is. These cannot be authenticated

{% for path in results.unexpected %} {% with url=path|url_for_path %} {% endwith %} {% endfor %}
Name Last Modified On Link
{{ path.name }} {% if path|mtime_is_epoch %} Timestamp has been lost (is Unix Epoch) {% else %} {{ path|mtime|date:"DATETIME_FORMAT" }} {% endif %} {{ url }}
{% endif %}
{% endif %} {% endblock %} {% block js %} {% endblock %}