FIRST 35 / usage dashboard
last updated
range endpoint
Total Visits
{{ total_visits }}
in selected range
Unique Users
{{ unique_users }}
distinct email addresses
Avg. Visits / User
{{ avg_visits_per_user }}
across all endpoints
Most Active Day
{{ most_active_day }}
{{ most_active_day_count }} visits
Daily Visit Volume {{ start_date }} → {{ end_date }}
Visits by Endpoint
{% set max_ep = endpoint_counts[0].visit_count if endpoint_counts else 1 %} {% for ep in endpoint_counts %}
{{ ep.endpoint }} {% if ep.endpoint == '/first_35' %} Standard {% set bar_class = 'accent' %} {% elif ep.endpoint == '/first_35_pro' %} Pro {% set bar_class = 'amber' %} {% elif ep.endpoint == '/first_35_curated' %} Curated {% set bar_class = 'green' %} {% elif ep.endpoint == '/first_35/benchmarks' %} Benchmarks {% set bar_class = 'purple' %} {% else %} Other {% set bar_class = 'dim' %} {% endif %}
{{ ep.visit_count }}
{% else %}
no data for selected range
{% endfor %}
Most Active Users top 10
{% set max_u = top_users[0].visit_count if top_users else 1 %} {% for u in top_users %}
{{ u.visit_count }}
{% else %}
no data for selected range
{% endfor %}
Endpoint Visit Log {{ visit_log | length }} rows
{% for row in visit_log %} {% else %} {% endfor %}
Timestamp User Endpoint Geo
{{ row.visit_ts }} {% if row.endpoint == '/first_35' %} Standard {% elif row.endpoint == '/first_35_pro' %} Pro {% elif row.endpoint == '/first_35_curated' %} Curated {% elif row.endpoint == '/first_35/benchmarks' %} Benchmarks {% else %} {{ row.endpoint }} {% endif %} {{ row.geo_country or '—' }}
no visits logged