{% extends "base.html" %} {% block content %}

Search Results

{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}

The search has completed. Back to start.

{% if graph_file %}

Combined Graph

{% endif %}
{% if individual_reports %}

Individual Reports

{% for report in individual_reports %}
{{ report.username }}

CSV Report | JSON Report | PDF Report | HTML Report

{% if report.claimed_profiles %} Claimed Profiles:
    {% for profile in report.claimed_profiles %}
  • {% if profile.tags %}
    {% for tag in profile.tags %} {{ tag }} {% endfor %}
    {% endif %}
  • {% endfor %}
{% else %}

No claimed profiles found.

{% endif %}
{% endfor %}
{% else %}

No individual reports available.

{% endif %}
{% endblock %}