{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block content %}
{% if errors %} {% for error in errors %}

{{ error }}

{% endfor %} {% endif %}

Configuration

{{ form.datetime_from }} {{ form.datetime_to }}
{{ form.non_field_errors }}

Thresholds

{% for field in form %} {% if field.name != "datetime_from" and field.name != "datetime_to" %}
{{ field }} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {{ field.errors }}
{% endif %} {% endfor %}
{% if queried %}
{% if high_usage_rows %} {% for row in high_usage_rows %} {% endfor %} {% else %} {% endif %}
High usage distinct IDs {{ high_usage_rows|length }}
Team ID Token Distinct ID Restrictions Event count Team total % Actions
{{ row.team_id }} {{ row.token|truncatechars:16 }}Copied {{ row.distinct_id|truncatechars:40 }}Copied {% if row.restriction_status == "covered" %} ✓ Applied ({{ row.restriction_type }}) Edit {% elif row.restriction_status == "covered_all" %} ✓ Applied (all) ({{ row.restriction_type }}) Edit {% elif row.restriction_status == "not_covered" %} ✗ Not in list ({{ row.restriction_type }})
{% csrf_token %}
{% else %} — {% endif %}
{{ row.event_count }} {{ row.total_team_events }} {{ row.percentage }}% {% if row.token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% else %} No token {% endif %}
No high usage distinct IDs found with current thresholds.
{% if high_cardinality_rows %} {% for row in high_cardinality_rows %} {% endfor %} {% else %} {% endif %}
High cardinality teams {{ high_cardinality_rows|length }}
Team ID Token Restrictions Unique distinct IDs
{{ row.team_id }} {{ row.token|truncatechars:16 }}Copied {% if row.restriction_status == "exists" %} {{ row.restriction_type }}{% if row.restriction_count > 1 %} (+{{ row.restriction_count|add:"-1" }}){% endif %} Edit {% else %} — {% endif %} {{ row.distinct_id_count }}
No high cardinality teams found with current thresholds.
{% if burst_distinct_id_rows %} {% for row in burst_distinct_id_rows %} {% endfor %} {% else %} {% endif %}
Burst events by distinct ID {{ burst_distinct_id_rows|length }}
Team ID Token Distinct ID Restrictions Minute Events/min Actions
{{ row.team_id }} {{ row.token|truncatechars:16 }}Copied {{ row.distinct_id|truncatechars:40 }}Copied {% if row.restriction_status == "covered" %} ✓ Applied ({{ row.restriction_type }}) Edit {% elif row.restriction_status == "covered_all" %} ✓ Applied (all) ({{ row.restriction_type }}) Edit {% elif row.restriction_status == "not_covered" %} ✗ Not in list ({{ row.restriction_type }})
{% csrf_token %}
{% else %} — {% endif %}
{{ row.minute }} {{ row.event_count }} {% if row.token %}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
{% else %} No token {% endif %}
No burst events by distinct ID found with current thresholds.
{% if burst_team_rows %} {% for row in burst_team_rows %} {% endfor %} {% else %} {% endif %}
Burst events by team {{ burst_team_rows|length }}
Team ID Token Restrictions Minute Events/min
{{ row.team_id }} {{ row.token|truncatechars:16 }}Copied {% if row.restriction_status == "exists" %} {{ row.restriction_type }}{% if row.restriction_count > 1 %} (+{{ row.restriction_count|add:"-1" }}){% endif %} Edit {% else %} — {% endif %} {{ row.minute }} {{ row.event_count }}
No burst events by team found with current thresholds.
{% endif %}
{% endblock %}