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

Asset Dashboard

Go to Asset Master
Total Assets
{{ total_assets }}
In Stock
{{ in_stock }}
Ready to allocate
Allocated
{{ allocated }}
Currently issued to employees
Under Repair
{{ under_repair }}
Sent for repair / service
Retired
{{ retired }}
End-of-life assets
Lost
{{ lost }}
Marked as permanently lost
Damaged
{{ damaged }}
Damage recorded & approved
Pending Approvals
{{ pending_returns + pending_loss_damage }}
{{ pending_returns }} return, {{ pending_loss_damage }} loss/damage
Recent Allocations
{% if recent_allocations %} {% for a in recent_allocations %} {% endfor %} {% else %} {% endif %}
Date Asset Employee
{{ a.allocated_on.strftime('%d-%m-%Y') if a.allocated_on else '-' }} {{ a.asset.asset_tag }} - {{ a.asset.name }} {{ a.employee.employee_code }} - {{ a.employee.full_name }}
No recent allocations.
Recent Loss / Damage
{% if recent_incidents %} {% for r in recent_incidents %} {% endfor %} {% else %} {% endif %}
Date Asset Type Status
{{ r.incident_date.strftime('%d-%m-%Y') if r.incident_date else '-' }} {{ r.asset.asset_tag }} - {{ r.asset.name }} {{ r.incident_type|title }} {{ r.status|title }}
No recent loss / damage records.
{% endblock %}