45 lines
1.6 KiB
PHP
45 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* @var \App\View\AppView $this
|
|
* @var \App\Model\Entity\WlDstTyp $wlDstTyp
|
|
*/
|
|
?>
|
|
<nav class="large-3 medium-4 columns" id="actions-sidebar">
|
|
<ul class="side-nav">
|
|
<li class="heading"><?= __('Actions') ?></li>
|
|
<li><?= $this->Html->link(__('Edit Wl Dst Typ'), ['action' => 'edit', $wlDstTyp->id]) ?> </li>
|
|
<li><?= $this->Form->postLink(__('Delete Wl Dst Typ'), ['action' => 'delete', $wlDstTyp->id], ['confirm' => __('Are you sure you want to delete # {0}?', $wlDstTyp->id)]) ?> </li>
|
|
<li><?= $this->Html->link(__('List Wl Dst Typ'), ['action' => 'index']) ?> </li>
|
|
<li><?= $this->Html->link(__('New Wl Dst Typ'), ['action' => 'add']) ?> </li>
|
|
</ul>
|
|
</nav>
|
|
<div class="wlDstTyp view large-9 medium-8 columns content">
|
|
<h3><?= h($wlDstTyp->name) ?></h3>
|
|
<table class="vertical-table">
|
|
<tr>
|
|
<th scope="row"><?= __('Key Value') ?></th>
|
|
<td><?= h($wlDstTyp->key_value) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?= __('Short') ?></th>
|
|
<td><?= h($wlDstTyp->short) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?= __('Name') ?></th>
|
|
<td><?= h($wlDstTyp->name) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?= __('Id') ?></th>
|
|
<td><?= $this->Number->format($wlDstTyp->id) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?= __('Created') ?></th>
|
|
<td><?= h($wlDstTyp->created) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?= __('Modfied') ?></th>
|
|
<td><?= h($wlDstTyp->modfied) ?></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|