{% extends "base.html" %} {% block title %}Browsing History - {{ agent_id }}{% endblock %} {% block content %}
Agent: {{ agent_id }}
Total Entries
Unique Domains
Frequent Sites
Collection Period
{{ stats.start_date|format_datetime }} - {{ stats.end_date|format_datetime }}
{{ record.timestamp }}
| Title | URL | Visit Count | Last Visit |
Type
⌨️ Typed: URL was manually entered in address bar 🔥 Frequent: Visited more than 5 times |
Actions |
|---|---|---|---|---|---|
| {{ entry.title }} |
{{ entry.url }}
{{ entry.url }}
|
{{ entry.visitCount }} | {{ entry.lastVisit|format_datetime }} |
{% if entry.typedCount > 0 %}
⌨️
Manually Typed ({{ entry.typedCount }})
{% endif %}
{% if entry.visitCount > 5 %}
🔥
Frequent Visit
{% endif %}
|