{% extends 'generic/object.html' %}
{% load render_table from django_tables2 %}
{% load helpers %}
{% load inventory_monitor %}
{% load plugins %}
{% block content %}
| Inventory Number |
{{ object.inventory_number }} |
| Name |
{{ object.name }} |
| Serial Number |
{{ object.serial_number|placeholder }} |
| Status |
{{ object.status|placeholder }} |
| Split Asset |
{{ object.split_asset|placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
| Person ID |
{{ object.person_id|placeholder }} |
| Person Name |
{{ object.person_name|placeholder }} |
| Location Code |
{{ object.location_code|placeholder }} |
| Location |
{{ object.location|placeholder }} |
| Activity Code |
{{ object.activity_code|placeholder }} |
| User Name |
{{ object.user_name|placeholder }} |
| User Note |
{{ object.user_note|placeholder }} |
{% include 'inc/panels/comments.html' %}
{% plugin_left_page object %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}