{% macro sanejs_details(details) %}
{% if details is string %} {{ details }} {% else %} This file is known as part of {{ details[0] }} version {{ details[1] }}: {{ details[2] }}. {% if details[3] > 1%} It is also present in {{ details[3] -1 }} other libraries. {%endif%} {%endif%}
{% endmacro %} {% macro indexed_hash(details, identifier_for_toggle) %} {% set total_captures = details['different_url']|length + details['same_url']|length %} {# Only show details if the hits are in an other capture #} {% if total_captures > 0 %}

The same file was seen in {{ total_captures }} other captures.

{# Lists of other captures loading the same content... #}
{% if details['different_url']|length > 0 %} {# ... on other URLs #}

The following captures get the same file from a different URL

    {% for capture_uuid, urlnode_uuid, title, hostname in details['different_url'] %}
  • {{ title }} - {{ hostname }}
  • {% endfor %}
{% endif %}
{% if details['same_url']|length > 0 %} {# ... on the same URL #}

The following captures get the same file from the same URL

    {% for capture_uuid, urlnode_uuid, title, hostname in details['same_url'] %}
  • {{ title }} - {{ hostname }}
  • {% endfor %}
{% endif %}
{% else %}

This file is loaded multiple times in this capture.

{% endif %} {% endmacro %}