{% extends "base.html" %} {% block title %}Dashboard — Willhaben Tracker{% endblock %} {% block title_in_topbar %}Dashboard{% endblock %} {% block content %} {% if data %}

Overview

Total Keywords
{{ data.total_keywords }}
{{ data.active_keywords }} active
Total Ads Tracked
{{ data.total_ads }}
Across all time
Active Users
{{ data.total_users }}
Subscribed to updates
Notifications Sent
{{ data.notifications_sent }}
Via Telegram

System Health

Last Scheduler Run
{{ data.last_scheduler.strftime('%Y-%m-%d %H:%M:%S') if data.last_scheduler else 'Never' }}
Worker polling rhythm
HTTP Proxy
{{ 'Enabled' if data.proxy_enabled else 'Disabled' }}
{{ 'Outbound scraping uses proxy' if data.proxy_enabled else 'Direct connection' }}
Delivery Queue
{{ data.queue_pending }} pending
{{ data.queue_dead }} dead letters
{% endif %} {% endblock %}