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

{{ obj.euid }}

Graph {% if obj.record_type == "template" %} Create Instance {% else %} External Link {% endif %}
{% if notice %}
{% if notice == "json_saved" %}JSON saved. {% elif notice == "status_updated" %}Status updated. {% elif notice == "lineage_added" %}Lineage added. {% elif notice == "external_link_created" %}External link created. {% elif notice == "instance_created" %}Instance created. {% else %}{{ notice }} {% endif %}
{% endif %}
UID{{ obj.uid }}
Kind{{ obj.record_type }}
Name{{ obj.name or "-" }}
Type{{ obj.category }}/{{ obj.type }}/{{ obj.subtype }}/{{ obj.version }}
Status{{ obj.bstatus or "-" }}
Created{{ obj.created_dt or "-" }}
Modified{{ obj.modified_dt or "-" }}
{% if obj.record_type != "template" %}

Edit

{% endif %}

Children

{% for row in relationships.parent_of %} {% endfor %}
LineageObjectRelationship
{{ row.lineage_euid }}{{ row.related_euid }} {{ row.related_name or "" }}{{ row.relationship_type }}

Parents

{% for row in relationships.child_of %} {% endfor %}
LineageObjectRelationship
{{ row.lineage_euid }}{{ row.related_euid }} {{ row.related_name or "" }}{{ row.relationship_type }}

External References

{% for ref in external_refs %} {% endfor %} {% if not external_refs %}{% endif %}
LabelSystemRemote EUIDStatus
{{ ref.label }}{{ ref.system }}{{ ref.root_euid }}{{ "graph-ready" if ref.graph_expandable else ref.reason }}
No external refs rendered for this object.

Audit

{% for row in audit_rows %} {% endfor %} {% if not audit_rows %}{% endif %}
WhenWhoOperationColumnNew
{{ row.changed_at }}{{ row.changed_by }}{{ row.operation }}{{ row.column }}{{ row.new_value }}
No audit rows found.
{% endblock %}