{% extends "base.html" %}{% block title %}Reminders{% endblock %}{% block content %}
Warranty expiring within 30 days
| Item | IMEI | Serial | Product Warranty | Battery Warranty |
{% for u in upcoming %}| {{u.item_name}} | {{u.imei}} | {{u.serial}} | {{u.product_warranty_expiry}} | {{u.battery_warranty_expiry}} |
{% else %}| No upcoming warranty expiry. |
{% endfor %}
All Reminders
| Type | Title | Due | Status | Action |
{% for r in reminders %}| {{r.reminder_type}} | {{r.title}} | {{r.due_date}} | {{r.status}} | {% if r.status != 'Done' %}{% endif %} |
{% endfor %}
{% endblock %}