{% extends "base.html" %} {% block title %}Keywords — Willhaben Tracker{% endblock %} {% block title_in_topbar %}Keywords{% endblock %} {% block content %} {% if not error and keywords %}
| Keyword | Status | Interval | Filters | Subscribers | Last Scraped |
|---|---|---|---|---|---|
|
{{ kw.keyword }}
{{ kw.id[:8] }}
|
{% if kw.is_active %} Active {% else %} Stopped {% endif %} | {{ kw.interval_minutes }}m |
{% if kw.price_min or kw.price_max %}
{{ (kw.price_min / 100)|round(2) if kw.price_min else '0' }} — {{ (kw.price_max / 100)|round(2) if kw.price_max else 'Max' }}
{% endif %}
{% if kw.allowed_postcodes %}
{{ kw.allowed_postcodes|length }} code(s)
{% endif %}
{% if not kw.price_min and not kw.price_max and not kw.allowed_postcodes %}
None
{% endif %}
|
{{ kw.subscriber_count }} | {% if kw.last_scraped_at %} {{ kw.last_scraped_at.strftime('%Y-%m-%d %H:%M') }} {% else %} Never {% endif %} |
No keywords are currently being tracked.