{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Price Monitor" %}{% endblock %} {% block content %}
{% trans "Track product prices and get notified on drops" %}
| {% trans "Product" %} | {% trans "Current Price" %} | {% trans "Last Checked" %} | {% trans "Interval" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|
|
{{ watcher.name }}
{{ watcher.url|truncatechars:60 }}
|
{% if watcher.last_price %}
${{ watcher.last_price }}
{% else %}
—
{% endif %}
{% if watcher.initial_price %}
{% trans "Initial" %} ${{ watcher.initial_price }}
{% endif %}
{% if watcher.price_change_direction %}
{% if watcher.price_change_direction == 'up' %}
{% trans "up" %} {{ watcher.price_change_pct }}%
{% elif watcher.price_change_direction == 'down' %}
{% trans "down" %} {{ watcher.price_change_pct }}%
{% else %}
0.00%
{% endif %}
{% endif %}
|
{% if watcher.last_checked_at %} {{ watcher.last_checked_at|timesince }} {% trans "ago" %} {% else %} {% trans "Never" %} {% endif %} | {{ watcher.get_check_interval_hours_display }} | {% if watcher.enabled %} {% trans "Active" %} {% else %} {% trans "Paused" %} {% endif %} |
{% trans "No watchers yet" %}