{% 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 %}
Toxicity metrics across monitored accounts
Average mention toxicity for top 20 most-targeted accounts
| {{ sort_header('handle', 'Account') }} | {{ sort_header('post_tox', 'Avg Post Toxicity') }} | Max Post Toxicity | {{ sort_header('flagged_posts', 'Flagged Posts') }} | {{ sort_header('mention_tox', 'Avg Mention Toxicity') }} | Max Mention Toxicity | {{ sort_header('flagged_mentions', 'Flagged Mentions') }} |
|---|---|---|---|---|---|---|
|
@{{ account.handle }}
{% if account.display_name %}
{{ account.display_name }}
{% endif %}
|
{% if account.max_post_tox > 0 %}
{{ "%.2f" | format(account.max_post_tox) }}
{% else %}
—
{% endif %}
|
{% if account.flagged_posts > 0 %} {{ account.flagged_posts | format_number }} / {{ account.scored_posts | format_number }} {% else %} {{ account.flagged_posts | format_number }} / {{ account.scored_posts | format_number }} {% endif %} |
{% if account.max_mention_tox > 0 %}
{{ "%.2f" | format(account.max_mention_tox) }}
{% else %}
—
{% endif %}
|
{% if account.flagged_mentions > 0 %} {{ account.flagged_mentions | format_number }} / {{ account.scored_mentions | format_number }} {% else %} {{ account.flagged_mentions | format_number }} / {{ account.scored_mentions | format_number }} {% endif %} |
No accounts found
Start monitoring accounts to see toxicity analysis