{% for link in object_links %}
|
{{ link.relationship }}
{% if link.automatic %}automatic{% endif %}
|
{% if link.target %}
{% if link.target.get_absolute_url %}{{ link.target }}{% else %}{{ link.target }}{% endif %}
{% else %}
Missing object
{% endif %}
{% if link.label %}{{ link.label }}{% endif %}
|
{% if not link.automatic and perms.netbox_certificates.change_objectlink %}
{% endif %}
{% if not link.automatic and perms.netbox_certificates.delete_objectlink %}
{% endif %}
|
{% endfor %}
{% for link in reverse_object_links %}
|
{{ link.relationship }} (reverse)
{% if link.automatic %}automatic{% endif %}
|
{% if link.source %}
{% if link.source.get_absolute_url %}{{ link.source }}{% else %}{{ link.source }}{% endif %}
{% else %}
Missing object
{% endif %}
{% if link.label %}{{ link.label }}{% endif %}
|
{% if not link.automatic and perms.netbox_certificates.change_objectlink %}
{% endif %}
{% if not link.automatic and perms.netbox_certificates.delete_objectlink %}
{% endif %}
|
{% empty %}
{% if not object_links %}
| No linked NetBox objects. |
{% endif %}
{% endfor %}