{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% block title %}{{ object }}{% endblock %} {% block header %}
{% if perms.nautobot_device_lifecycle_mgmt.change_contactlcm %} {% edit_button object %} {% endif %} {% if perms.nautobot_device_lifecycle_mgmt.delete_contactlcm %} {% delete_button object %} {% endif %}

Contact: {{ object }}

{% include 'inc/created_updated.html' with obj=object %}
{% custom_links object %}
{% endblock %} {% block content %}
Contact
Name {{ object.name }}
Address {% if object.address %} {{ object.address|linebreaksbr }} {% else %} — {% endif %}
Phone {{ object.phone|placeholder }}
E-Mail {% if object.email %} {{ object.email }}{% else %} — {% endif %}
PoC Type {{ object.type }}
Assign to Contract {{ object.contract.name }}
Priority {{ object.priority }}
Comments {% if object.comments %}
{{ object.comments|placeholder  }}
{% else %} — {% endif %}
{% include 'inc/custom_fields_panel.html' %} {% include 'inc/relationships_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all %}
{% endblock %}