{% extends "generic/object.html" %}
{% load render_table from django_tables2 %}
{% load django_tables2 %}
{% load plugins %}
{% load tabs %}
{% block content %}
| Serial |
{{ object.serial }} |
| Serial Actual |
{{ object.serial_actual }} |
| Part Number |
{{ object.partnumber }} |
| Vendor |
{{ object.vendor }} |
| Device |
{% if object.device %}
{{ object.device }}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
| Inventory Item |
{% if object.inventory_item %}
{{ object.inventory_item }}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
| Site |
{% if object.site %}
{{ object.site }}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
| Location |
{% if object.location %}
{{ object.location }}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
| Project |
{{ object.project }} |
| Warranty Start |
{{ object.warranty_start }} |
| Warranty End |
{{ object.warranty_end }} |
| Items |
{{ object.quantity }} |
| Price |
{{ object.price|to_czech_crown }} |
| Asset Number |
{{ object.asset_number }} |
|
Order Contract
|
{% if object.order_contract %}
{{ object.order_contract }}
{% else %}
{{ ''|placeholder }}
{% endif %}
|
{% include "inc/panels/custom_fields.html" %}
{% include "inc/panels/tags.html" %}
{% include "inc/panels/comments.html" %}
{% render_table component_services_table %}
{% include "inc/paginator.html" with paginator=component_services_table.paginator page=component_services_table.page %}
{% plugin_left_page object %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock content %}