{% extends "base.html" %} {% block title %}TAPDB Admin - {{ obj.euid }}{% endblock %} {% block content %}
| 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 '-' }} |
{{ obj.json_addl | tojson(indent=2) }}
| Label | System | Root EUID | Tenant | Actions |
|---|---|---|---|---|
| {{ 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 %} |
Objects that this instance is a parent of
{% if parent_lineages %}| Lineage EUID | Child EUID | Child Name | Relationship |
|---|---|---|---|
| {{ lin.euid }} | {{ lin.child_euid }} | {{ lin.child_name or '-' }} | {{ lin.relationship_type or 'related' }} |
No child relationships
{% endif %}Objects that this instance is a child of
{% if child_lineages %}| Lineage EUID | Parent EUID | Parent Name | Relationship |
|---|---|---|---|
| {{ lin.euid }} | {{ lin.parent_euid }} | {{ lin.parent_name or '-' }} | {{ lin.relationship_type or 'related' }} |
No parent relationships
{% endif %}| 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' }} |