{% extends "base.html" %} {% block title %}Account Toxicity Analysis{% endblock %} {% macro sort_header(col, label) %} {% set new_dir = 'desc' if (sort == col and direction == 'asc') else 'asc' %} {{ label }} {% if sort == col %} {% if direction == 'asc' %}▲{% else %}▼{% endif %} {% endif %} {% endmacro %} {% block content %}

Most Targeted Accounts

Average mention toxicity for top 20 most-targeted accounts

Account Details

{% if accounts %}
{% for account in accounts %} {% endfor %}
{{ sort_header('handle', 'Account') }} {{ sort_header('post_tox', 'Avg Post Toxicity') }} {{ sort_header('flagged_posts', 'Flagged Posts') }} {{ sort_header('mention_tox', 'Avg Mention Toxicity') }} {{ sort_header('flagged_mentions', 'Flagged Mentions') }}
{% if total_pages > 1 %} {% endif %} {% else %}

No accounts found

Start monitoring accounts to see toxicity analysis

{% endif %}
{% endblock %} {% block extra_css %} {% endblock %}