From d6d4c8e08ad5d938099e2bc61e65f00cbb0a453f Mon Sep 17 00:00:00 2001 From: iglocska Date: Thu, 2 May 2024 11:41:23 +0200 Subject: [PATCH] fix: [UI] added missing views --- app/View/Attributes/view_analyst_data.ctp | 11 +++++++++++ app/View/Objects/view_analyst_data.ctp | 11 +++++++++++ 2 files changed, 22 insertions(+) create mode 100644 app/View/Attributes/view_analyst_data.ctp create mode 100644 app/View/Objects/view_analyst_data.ctp diff --git a/app/View/Attributes/view_analyst_data.ctp b/app/View/Attributes/view_analyst_data.ctp new file mode 100644 index 000000000..d3bb5dec0 --- /dev/null +++ b/app/View/Attributes/view_analyst_data.ctp @@ -0,0 +1,11 @@ +element('genericElements/Analyst_data/generic_simple', [ + 'analyst_data' => ['notes' => $notes, 'opinions' => $opinions, 'relationships_outbound' => $relationships, 'relationships_inbound' => $relationshipsInbound], + 'object_uuid' => $object['uuid'], + 'object_type' => 'Attribute' + ]); +?> \ No newline at end of file diff --git a/app/View/Objects/view_analyst_data.ctp b/app/View/Objects/view_analyst_data.ctp new file mode 100644 index 000000000..f3196e413 --- /dev/null +++ b/app/View/Objects/view_analyst_data.ctp @@ -0,0 +1,11 @@ +element('genericElements/Analyst_data/generic_simple', [ + 'analyst_data' => ['notes' => $notes, 'opinions' => $opinions, 'relationships_outbound' => $relationships, 'relationships_inbound' => $relationshipsInbound], + 'object_uuid' => $object['uuid'], + 'object_type' => 'Object' + ]); +?> \ No newline at end of file