{% extends "base.html" %} {% block title %}Ads — Willhaben Tracker{% endblock %} {% block content %}
| 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') }} |