{% extends "generic/object.html" %} {% load render_table from django_tables2 %} {% load django_tables2 %} {% load plugins %} {% load tabs %} {% load inventory_monitor %} {% load i18n %} {% block content %}
Asset Identification
Name {{ object.name|placeholder }}
Serial {{ object.serial|placeholder }}
Part Number {{ object.partnumber|placeholder }}
Type {% if object.type %} {{ object.type }} {% if object.type.color %}   {% endif %} {% else %} {{ ''|placeholder }} {% endif %}
Vendor {{ object.vendor|placeholder }}
Assignment Status {{ object.get_assignment_status_display }}
Lifecycle Status {{ object.get_lifecycle_status_display }}
{% trans "Assigned Object" %} {{ object.assigned_object|linkify|placeholder }}
Inventory Item {% if object.inventory_item %} {{ object.inventory_item }} {% else %} {{ ''|placeholder }} {% endif %}
Project {{ object.project|placeholder }}
Asset Details
Warranty Start {{ object.warranty_start | placeholder }}
Warranty End {{ object.warranty_end | placeholder }}
Warranty Status {% include 'inventory_monitor/inc/status_badge.html' with record=object status_type='warranty' %}
Items {{ object.quantity|placeholder }}
Price {{ object.price|to_czech_crown }}
Asset Number {{ object.asset_number|placeholder }}
Order Contract {% if object.order_contract %} {{ object.order_contract }} {% else %} {{ ''|placeholder }} {% endif %}
{% include 'inc/panels/image_attachments.html' %} {% include "inc/panels/custom_fields.html" %}
{% include "inc/panels/tags.html" %} {% include "inc/panels/comments.html" %}
ABRA assets
{% htmx_table 'plugins:inventory_monitor:abra_list' asset_id=object.pk %}
Services
Service List {% if perms.inventory_monitor.add_componentservice %} Add Service {% endif %}
{% htmx_table 'plugins:inventory_monitor:componentservice_list' asset=object.pk %}
{% plugin_left_page object %}
{% plugin_right_page object %}
{% include 'inventory_monitor/inc/asset_rmas.html' %}
{% plugin_full_width_page object %}
{% endblock content %}