{% extends "base.html" %} {% block title %}TAPDB Admin - {{ obj.euid }}{% endblock %} {% block content %}

{{ obj.euid }}

{% if obj_type == 'template' and not is_reserved_template(obj) %} ➕ Create Instance {% endif %} {% if obj_type == 'instance' %} 🔗 View in Graph {% endif %} {% if permissions and permissions.can_delete_object %} {% endif %}

Object Details

ID{{ obj.uid }}
EUID{{ obj.euid }}
Object Type{{ obj_type }}
Name{{ obj.name or '-' }}
Category{{ obj.category }}
Type{{ obj.type }}
Subtype{{ obj.subtype }}
Version{{ obj.version }}
Status{{ obj.bstatus or '-' }}
Created{{ obj.created_dt.strftime('%Y-%m-%d %H:%M:%S') if obj.created_dt else '-' }}
Modified{{ obj.modified_dt.strftime('%Y-%m-%d %H:%M:%S') if obj.modified_dt else '-' }}
{% if obj.json_addl %}

Additional Data (JSON)

{{ obj.json_addl | tojson(indent=2) }}
{% endif %} {% if external_refs %}

External References

{% for ref in external_refs %} {% endfor %}
LabelSystemRoot EUIDTenantActions
{{ ref.label }} {{ ref.system }} {{ ref.root_euid }} {{ ref.tenant_id or '-' }} {% if ref.href %} Open Remote {% endif %} Open In Graph {% if not ref.graph_expandable %} {{ ref.reason or 'Graph expansion unavailable' }} {% endif %}
{% endif %} {% if obj_type == 'instance' %}

Parent Relationships ({{ parent_lineages | length }})

Objects that this instance is a parent of

{% if parent_lineages %} {% for lin in parent_lineages %} {% endfor %}
Lineage EUIDChild EUIDChild NameRelationship
{{ lin.euid }} {{ lin.child_euid }} {{ lin.child_name or '-' }} {{ lin.relationship_type or 'related' }}
{% else %}

No child relationships

{% endif %}

Child Relationships ({{ child_lineages | length }})

Objects that this instance is a child of

{% if child_lineages %} {% for lin in child_lineages %} {% endfor %}
Lineage EUIDParent EUIDParent NameRelationship
{{ lin.euid }} {{ lin.parent_euid }} {{ lin.parent_name or '-' }} {{ lin.relationship_type or 'related' }}
{% else %}

No parent relationships

{% endif %}
{% endif %} {% if obj_type == 'lineage' %}

Lineage Details

Parent Instance {% if obj.parent_instance %} {{ obj.parent_instance.euid }} ({{ obj.parent_instance.name or '-' }}) {% else %}-{% endif %}
Child Instance {% if obj.child_instance %} {{ obj.child_instance.euid }} ({{ obj.child_instance.name or '-' }}) {% else %}-{% endif %}
Relationship Type{{ obj.relationship_type or 'related' }}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}