{% extends "base.html" %}{% block title %}Reminders{% endblock %}{% block content %}

⏰ Reminders

Warranty expiring within 30 days

{% for u in upcoming %}{% else %}{% endfor %}
ItemIMEISerialProduct WarrantyBattery Warranty
{{u.item_name}}{{u.imei}}{{u.serial}}{{u.product_warranty_expiry}}{{u.battery_warranty_expiry}}
No upcoming warranty expiry.

All Reminders

{% for r in reminders %}{% endfor %}
TypeTitleDueStatusAction
{{r.reminder_type}}{{r.title}}{{r.due_date}}{{r.status}}{% if r.status != 'Done' %}
{% endif %}
{% endblock %}