{% load i18n %} {% load static %} {% if asset_allocations %}
{% trans "Allocated User" %}
{% trans "Asset" %}
{% trans "Assigned Date" %}
{% for asset_allocation in asset_allocations %}
{{asset_allocation.assigned_to_employee_id}}
{{asset_allocation.asset_id}}
{{asset_allocation.assigned_date}}
{% endfor %}
{% else %}
Page not found. 404.
{% trans "There is no asset allocation at this moment." %}
{% endif %}