{% extends "base.html" %} {% block content %}
| Asset | Employee | Allocated On | Return Date | Remarks | Actions |
|---|---|---|---|---|---|
| {{ a.asset.asset_tag }} - {{ a.asset.name }} | {{ a.employee.employee_code }} - {{ a.employee.full_name }} | {{ a.allocated_on.strftime('%d-%m-%Y') if a.allocated_on }} | {{ a.actual_return_date.strftime('%d-%m-%Y') if a.actual_return_date }} | {{ a.condition_on_return or '-' }} | |
| No pending return requests. | |||||
| Asset | Employee | Type | Incident Date | Estimated Amount | Description | Actions |
|---|---|---|---|---|---|---|
| {{ r.asset.asset_tag }} - {{ r.asset.name }} | {{ r.employee.employee_code }} - {{ r.employee.full_name }} | {{ r.incident_type }} | {{ r.incident_date.strftime('%d-%m-%Y') if r.incident_date }} | {% if r.estimated_amount is not none %} {{ '%.2f'|format(r.estimated_amount) }} {% else %} - {% endif %} | {{ r.description or '-' }} | |
| No pending loss or damage reports. | ||||||