{% extends "generic/object.html" %}
{% load render_table from django_tables2 %}
{% load django_tables2 %}
{% load plugins %}
{% load tabs %}
{% load inventory_monitor %}
{% load i18n %}
{% block content %}
Part Number |
{{ object.partnumber|placeholder }} |
Serial |
{{ object.serial|placeholder }} |
Description |
{{ object.description|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 }} |
Project |
{{ object.project|placeholder }} |
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" %}
{% htmx_table 'plugins:inventory_monitor:abra_list' asset_id=object.pk %}
{% 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 %}