{% extends "results.html" %}
{% block header %}
{% for aid, archive in state.archives.items() %}
Result {{ hash(aid) }} {% if aid in state.patched %}✔{% endif %}
{% if state.settings.show_identities %}
{{ archive.results.format_members(separator='/', max_width=32) }}
{% else %}
●●●●●●●
{% endif %}
{% endfor %}
{% endblock %}
{% block content %}
{% if id in state.archives %}
{% set results = state.archives[id].results %}
Edit Result {{ hash(results.checksum) }}
{% endif %}
{% endblock %}
{% block footer %}
{% if id in state.archives %}
{{ list_artifacts(state.archives[id].results, True) }}
{% endif %}
Settings
Controlls
{% endblock %}