{% extends "base.html" %} {% block title %}Dashboard — Willhaben Tracker{% endblock %} {% block content %} {% if data %}
Total Keywords
{{ data.total_keywords }}
{{ data.active_keywords }} active
Total Ads
{{ data.total_ads }}
Active Users
{{ data.total_users }}
Notifications Sent
{{ data.notifications_sent }}
Queue Pending
{{ data.queue_pending }}
Queue Dead
{{ data.queue_dead }}
Last Scheduler Run
{{ data.last_scheduler.strftime('%Y-%m-%d %H:%M:%S') if data.last_scheduler else 'Never' }}
HTTP Proxy
{{ 'Enabled' if data.proxy_enabled else 'Disabled' }}
{{ 'Outbound scraping uses the proxy' if data.proxy_enabled else 'Outbound scraping goes direct' }}
{% endif %} {% endblock %}