{% extends 'assets/base.html' %} {% load bob %} {% load i18n %} {% load icons %} {% block extra_headers %} {{ block.super }} {% endblock %} {% block scripts %} {{ block.super }} {% endblock %} {% block content %}

{{ user_object.get_full_name }}

{% trans "Details" %}:
{% trans "company" %} {% trans "employee_id" %} {% trans "profit_center" %} {% trans "cost_center" %} {% trans "department" %} {% trans "manager" %} {% trans "location" %} {% trans "segment" %}
{{ user_object.profile.company }} {{ user_object.profile.employee_id }} {{ user_object.profile.profit_center }} {{ user_object.profile.cost_center }} {{ user_object.profile.department }} {{ user_object.profile.manager }} {{ user_object.profile.location }} {{ user_object.profile.segment }}
{% trans "Assigned assets" %}:
{% for asset in assigned_assets %} {% with asset.licences.all as licences %} {% if licences %} {% endif %} {% endwith %} {% endfor %}
# {% trans "Category" %} {% trans "Manufacturer" %} {% trans "Model" %} {% trans "Sn" %} {% trans "Barcode" %} {% trans "Additional remarks" %} {% trans "Status" %} {% trans "Link" %}
{{ forloop.counter }} {{ asset.model.category }} {{ asset.model.manufacturer }} {{ asset.model }} {{ asset.sn }} {{ asset.barcode }} {{ asset.remarks }} {{ asset.get_status_display }} {% trans "go to asset" %}
{% trans "licences" %}
{% trans "Assigned licences" %}:
{% for licence in assigned_licences %} {% endfor %}
# {% trans "Software category" %} {% trans "Inventory number" %} {% trans "Link" %}
{{ forloop.counter }} {{ licence.software_category }} {{ licence.niw }} {% trans "go to licence" %}
{% trans "Edit licences" %}
{% trans "Transitons history" %}:
{% for h in transitions_history %} {% endfor %}
{% trans "Date" %} {% trans "Type" %} {% trans "Author" %} {% trans "Report" %}
{{ h.created|timesince_limited }} {{ h.transition.name }} {{ h.logged_user }} {% trans "download" %}
{% endblock %}