{% extends 'generic/object.html' %}
{% load render_table from django_tables2 %}
{% block content %}
Device |
{{ object.device|linkify }} |
Manufacturer |
{{ object.device.device_type.manufacturer|linkify }} |
Model |
{{ object.device.device_type|linkify }} |
Serialnumber |
{{ object.device.serial }} |
Site |
{{ object.device.site|linkify }} |
Rack / Face / HE |
{{ object.device.rack|linkify }} / {{ object.device.face }} / {{ object.device.position }} |
Site Physical address |
{{ object.device.site.physical_address|linkify }} |
Site Shipping address |
{{ object.device.site.shipping_address|linkify }} |
Supplier |
{{ object.contract.supplier|linkify }} |
Address |
{{ object.contract.supplier.physical_address }} |
Country |
{{ object.contract.supplier.country }} |
Phone |
{{ object.contract.supplier.phone }} |
Email |
{{ object.contract.supplier.email }} |
Portal Url |
{{ object.contract.supplier.portal_url }} |
Description |
{{ object.contract.description }} |
Contract number |
{{ object.contract.contract_number }} |
Start of contract |
{{ object.contract.start_of_contract }} |
End of contract |
{{ object.contract.end_of_contract }} |
Status |
{{ object.contract.status }} |
{% endblock content %}