{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Price Monitor" %}{% endblock %} {% block content %}

{% trans "Price Monitor" %}

{% trans "Track product prices and get notified on drops" %}

{% trans "Add Watcher" %}
{% trans "Watchers" %}
{{ total_watchers }}
{% trans "Active Alerts" %}
{{ active_alerts_count }}
{% trans "Enabled" %}
{{ enabled_watchers_count }}
{% if active_alerts %}
{% include 'pricemon/_alerts.html' %}
{% endif %}
{% if watchers %}
{% for watcher in watchers %}
{{ watcher.name }} {% if watcher.enabled %} {% trans "Active" %} {% else %} {% trans "Paused" %} {% endif %}
{{ watcher.url|truncatechars:55 }}
{% if watcher.last_checked_at %} {% trans "Checked" %} {{ watcher.last_checked_at|timesince }} {% trans "ago" %} {% else %} {% trans "Never checked" %} {% endif %} {{ watcher.get_check_interval_hours_display }}
{% 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 %}
{% csrf_token %}
{% csrf_token %}
{% endfor %}
{% for watcher in watchers %} {% endfor %} {% else %}

{% trans "No watchers yet" %}

{% trans "Add your first price watcher" %}

{% endif %}
{% endblock %}