{% extends "base.html" %} {% block title %}Ads — Willhaben Tracker{% endblock %} {% block title_in_topbar %}Recent Ads{% endblock %} {% block content %} {% if not error and ads %}
{% for ad in ads %} {% endfor %}
Ad Location First Tracked Link
{{ ad.title }}
{{ format_price(ad.price) }} {% if ad.published_at %} Pub: {{ ad.published_at.strftime('%m/%d %H:%M') }} {% endif %}
{% if ad.postcode %}{{ ad.postcode }} • {% endif %} {{ ad.location or '—' }}
{{ ad.first_seen_at.strftime('%Y-%m-%d') }}
{{ ad.first_seen_at.strftime('%H:%M:%S') }}
Open
{% elif not error %}

No ads tracked yet.

{% endif %} {% endblock %}