{% extends "base.html" %} {% block title %}Ads — Willhaben Tracker{% endblock %} {% block content %} {% if not error and ads %}
{% for ad in ads %} {% endfor %}
Title Price Location Postcode URL Published First Seen
{{ ad.title[:70] }}{% if ad.title|length > 70 %}…{% endif %} {{ format_price(ad.price) }} {{ ad.location or '—' }} {{ ad.postcode or '—' }} Link {{ ad.published_at.strftime('%Y-%m-%d %H:%M') if ad.published_at else '—' }} {{ ad.first_seen_at.strftime('%Y-%m-%d %H:%M') }}
{% elif not error %}
No ads found.
{% endif %} {% endblock %}