{% extends "base.html" %} {% block title %}callmem — {{ path }}{% endblock %} {% block content %}

← Files

{{ path }}

{% if not context %}
No path specified.
{% elif not context.has_observations %}
No observations for this file.

{{ context.recommendation }}

{% else %}

{{ context.observation_count }} observations · first seen {{ context.first_seen }} · last modified {{ context.last_modified }}

{{ context.recommendation }}

{% if context.current_state %}

Current state

{{ context.current_state }}
{% endif %}

Timeline

{% for e in context.timeline %} {% endfor %}
DateTypeSummary
{{ e.date }} {{ e.type }} {{ e.summary }}
{% if context.timeline_truncated and context.timeline_truncated > 0 %}

{{ context.timeline_truncated }} additional observations not shown.

{% endif %} {% endif %} {% endblock %}