2021-12-03 02:36:25 +00:00
|
|
|
@extends('layouts.dn')
|
2020-09-13 11:30:04 +00:00
|
|
|
|
|
|
|
@section('page_title')
|
2021-12-08 12:26:12 +00:00
|
|
|
<table class="table table-borderless">
|
|
|
|
<tr>
|
2023-03-02 07:21:53 +00:00
|
|
|
<td class="{{ ($x=Arr::get($o->getAttributes(),'jpegphoto')) ? 'border' : '' }}" rowspan="2">{!! $x ?: sprintf('<div class="page-title-icon f32"><i class="%s"></i></div>',$o->icon() ?? "fas fa-info") !!}</td>
|
2023-03-25 12:33:27 +00:00
|
|
|
<td class="text-end align-text-top p-0 {{ $x ? 'ps-5' : 'pt-2' }}"><strong>{{ $dn }}</strong></td>
|
2023-03-02 07:21:53 +00:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="line-height-1" style="font-size: 55%;vertical-align: bottom;" colspan="2">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<td class="p-1 m-1">Created</td>
|
|
|
|
<th class="p-1 m-1">{{ ($x=Arr::get($o->getAttributes(),'createtimestamp')) ? $x : __('Unknown') }} [{{ ($x=Arr::get($o->getAttributes(),'creatorsname')) ? $x : __('Unknown') }}]</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="p-1 m-1">Modified</td>
|
|
|
|
<th class="p-1 m-1">{{ ($x=Arr::get($o->getAttributes(),'modifytimestamp')) ? $x : __('Unknown') }} [{{ ($x=Arr::get($o->getAttributes(),'modifiersname')) ? $x : __('Unknown') }}]</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="p-1 m-1">UUID</td>
|
|
|
|
<th class="p-1 m-1">{{ $o->entryuuid[0] ?? '' }}</th>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</td>
|
2021-12-08 12:26:12 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
2020-09-13 11:30:04 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('main-content')
|
2023-03-01 22:54:30 +00:00
|
|
|
<div class="main-card mb-3 card">
|
|
|
|
<div class="card-body">
|
|
|
|
<div class="card-header-tabs">
|
|
|
|
<ul class="nav nav-tabs">
|
2023-03-25 12:33:27 +00:00
|
|
|
<li class="nav-item"><a data-bs-toggle="tab" href="#attributes" class="nav-link active">{{ __('Attributes') }}</a></li>
|
2023-03-02 07:21:53 +00:00
|
|
|
{{--
|
2023-03-25 12:33:27 +00:00
|
|
|
<li class="nav-item"><a data-bs-toggle="tab" href="#placeholder" class="nav-link">placeholder</a></li>
|
2023-03-02 07:21:53 +00:00
|
|
|
--}}
|
2023-03-25 12:33:27 +00:00
|
|
|
<li class="nav-item"><a data-bs-toggle="tab" href="#internal" class="nav-link">{{ __('Internal') }}</a></li>
|
2023-03-02 07:21:53 +00:00
|
|
|
{{--
|
2023-03-25 12:33:27 +00:00
|
|
|
<li class="nav-item"><a data-bs-toggle="tab" href="#addtemplate" class="nav-link">{{ __('Add Template') }}</a></li>
|
2023-03-02 07:21:53 +00:00
|
|
|
--}}
|
2023-03-01 22:54:30 +00:00
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="tab-content">
|
|
|
|
<!-- All Attributes -->
|
|
|
|
<div class="tab-pane active" id="attributes" role="tabpanel">
|
|
|
|
<div class="row">
|
|
|
|
<div class="offset-2 col-8">
|
|
|
|
<table class="table">
|
|
|
|
@foreach ($o->getVisibleAttributes() as $ao)
|
|
|
|
<tr class="bg-light text-dark small">
|
2023-03-02 03:41:38 +00:00
|
|
|
<th class="w-25">
|
|
|
|
<abbr title="{{ $ao->description }}">{{ $ao->name }}</abbr>
|
2023-03-01 22:54:30 +00:00
|
|
|
<!-- Attribute Hints -->
|
2023-03-25 12:33:27 +00:00
|
|
|
<span class="float-end">
|
2023-03-02 03:41:38 +00:00
|
|
|
@foreach($ao->hints as $name => $description)
|
|
|
|
@if ($loop->index),@endif
|
|
|
|
<abbr title="{{ $description }}">{{ $name }}</abbr>
|
|
|
|
@endforeach
|
|
|
|
</span>
|
2023-03-01 22:54:30 +00:00
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-03-25 12:33:27 +00:00
|
|
|
<td class="ps-5">
|
2023-03-01 22:54:30 +00:00
|
|
|
{!! $ao->deletable() !!}<br>
|
2023-03-02 03:41:38 +00:00
|
|
|
@if ($ao->can_addvalues)
|
|
|
|
<span class="p-0 m-0" id="add{{ $ao->name_lc }}"></span>
|
|
|
|
<span class="btn btn-sm btn-outline-primary mt-3 mb-3"><i class="fas fa-plus"></i> {{ __('Add Value') }}</span>
|
|
|
|
@endif
|
2023-03-01 22:54:30 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-03-02 07:21:53 +00:00
|
|
|
{{--
|
2023-03-01 22:54:30 +00:00
|
|
|
<!-- Templates -->
|
|
|
|
<div class="tab-pane" id="placeholder" role="tabpanel">
|
|
|
|
<div><i class="fas fa-fw fa-spinner fa-pulse"></i></div>
|
|
|
|
</div>
|
2023-03-02 07:21:53 +00:00
|
|
|
--}}
|
2023-03-01 22:54:30 +00:00
|
|
|
|
|
|
|
<!-- Internal Attributes -->
|
|
|
|
<div class="tab-pane" id="internal" role="tabpanel">
|
2023-03-02 07:21:53 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="offset-2 col-8">
|
|
|
|
<table class="table">
|
|
|
|
@foreach ($o->getInternalAttributes() as $ao)
|
|
|
|
<tr class="bg-light text-dark small">
|
|
|
|
<th class="w-25">
|
|
|
|
<abbr title="{{ $ao->description }}">{{ $ao->name }}</abbr>
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2023-03-25 12:33:27 +00:00
|
|
|
<td class="ps-5">
|
2023-03-02 07:21:53 +00:00
|
|
|
{!! $ao !!}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-03-01 22:54:30 +00:00
|
|
|
</div>
|
|
|
|
|
2023-03-02 07:21:53 +00:00
|
|
|
{{--
|
2023-03-01 22:54:30 +00:00
|
|
|
<!-- Add Template -->
|
|
|
|
<div class="tab-pane" id="addtemplate" role="tabpanel">
|
|
|
|
<div><i class="fas fa-fw fa-spinner fa-pulse"></i></div>
|
|
|
|
</div>
|
2023-03-02 07:21:53 +00:00
|
|
|
--}}
|
2023-03-01 22:54:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-18 14:08:00 +00:00
|
|
|
</div>
|
2023-03-25 12:33:27 +00:00
|
|
|
@endsection
|