{% extends "base.html" %} {% block title %}Browsing History - {{ agent_id }}{% endblock %} {% block content %}

Browsing History Analysis

Agent: {{ agent_id }}

Total Entries

{{ stats.total_entries }}

Unique Domains

{{ stats.unique_domains }}

Frequent Sites

{{ stats.frequent_sites }}

Collection Period

{{ stats.collection_period }} days

{{ stats.start_date|format_datetime }} - {{ stats.end_date|format_datetime }}

Quick Filters

Activity Timeline

Visit Count
{% for record in records %} {% set payload = record.payload %}

Collection #{{ loop.index }}

{{ record.timestamp }}

{{ payload.entries|length }} Entries {{ payload.days }} Days
{% for entry in payload.entries %} {% endfor %}
Title URL Visit Count Last Visit Type Actions
{{ entry.title }}
{{ entry.url }}
{{ entry.visitCount }} {{ entry.lastVisit|format_datetime }}
{% if entry.typedCount > 0 %} ⌨️ Manually Typed ({{ entry.typedCount }}) {% endif %} {% if entry.visitCount > 5 %} 🔥 Frequent Visit {% endif %}
{% endfor %}
{% endblock %}