{% extends "base.html" %} {% block title %}Dashboard - Price Tracker{% endblock %} {% block content %}

Dashboard

Add Product
{% if not products %}

No Products Yet

Start tracking prices by adding your first product!

Add Your First Product
{% else %}
{% for product in products %}
{{ product.name }}
{% if product.target_price %} Target: £{{ "%.2f"|format(product.target_price) }} {% endif %}
{% if product.description %}

{{ product.description[:100] }}{% if product.description|length > 100 %}...{% endif %}

{% endif %}
Tracking on:
{% for site_name in product.urls.keys() %} {{ site_name.title() }} {% endfor %}
{% if product.latest_prices %}
{% for site_name, price_data in product.latest_prices.items() %}
{{ site_name.title() }}
£{{ "%.2f"|format(price_data.price) }}
{{ price_data.timestamp[:10] }}
{% endfor %}
{% if product.best_price %}
Best Price: £{{ "%.2f"|format(product.best_price.price) }} {% if product.target_price and product.best_price.price <= product.target_price %} Target Reached! {% endif %}
{% endif %} {% else %}
No price data yet. Click "Scrape Now" to get prices.
{% endif %}
Details
Edit
{% endfor %}

{{ products|length }}

Products Tracked

{% if products %} {% set total_urls = 0 %} {% for product in products %} {% set total_urls = total_urls + product.urls|length %} {% endfor %} {{ total_urls }} {% else %} 0 {% endif %}

Total URLs

{% set alerts = [] %} {% for product in products %} {% if product.target_price and product.best_price and product.best_price.price <= product.target_price %} {% set _ = alerts.append(1) %} {% endif %} {% endfor %} {{ alerts|length }}

Price Alerts

{% set total_savings = 0 %} {% for product in products %} {% if product.target_price and product.best_price %} {% set savings = product.target_price - product.best_price.price %} {% if savings > 0 %} {% set total_savings = total_savings + savings %} {% endif %} {% endif %} {% endfor %} £{{ "%.0f"|format(total_savings) }}

Potential Savings

{% endif %} {% endblock %}