{% 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
{% if results %}
{% if results.can_verify %}
These can be authenticated
Name |
Last Modified On |
Link |
Source |
{% for path in results.can_verify %}
{% with url=path|url_for_path %}
{{ path.name }} |
{% if path|mtime_is_epoch %}
Timestamp has been lost (is Unix Epoch)
{% else %}
{{ path|mtime|date:"DATETIME_FORMAT" }}
{% endif %}
|
{{ url }} |
{{ path }} |
{% endwith %}
{% endfor %}
{% else %}
Nothing with this name fragment can be authenticated
{% endif %}
{% if results.unverifiable_collections %}
These are in the archive, but cannot be authenticated
Name |
Last Modified On |
Link |
Source |
{% for path in results.unverifiable_collections %}
{% with url=path|url_for_path %}
{{ path.name }} |
{% if path|mtime_is_epoch %}
Timestamp has been lost (is Unix Epoch)
{% else %}
{{ path|mtime|date:"DATETIME_FORMAT" }}
{% endif %}
|
{{ url }} |
{{ path }} |
{% endwith %}
{% endfor %}
{% endif %}
{% if results.unexpected %}
These are unexpected and we do not know what their origin is. These cannot be authenticated
Name |
Last Modified On |
Link |
{% for path in results.unexpected %}
{% with url=path|url_for_path %}
{{ path.name }} |
{% if path|mtime_is_epoch %}
Timestamp has been lost (is Unix Epoch)
{% else %}
{{ path|mtime|date:"DATETIME_FORMAT" }}
{% endif %}
|
{{ url }} |
{% endwith %}
{% endfor %}
{% endif %}
{% endif %}
{% endblock %}
{% block js %}
{% endblock %}