{% extends "base.html" %} {% block content %}

Asset Approvals

Pending Return Requests
{% if pending_returns %} {% for a in pending_returns %} {% endfor %} {% else %} {% endif %}
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.
Pending Loss / Damage Reports
{% if pending_ld %} {% for r in pending_ld %} {% endfor %} {% else %} {% endif %}
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.
{% endblock %}