mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
37 lines
2.2 KiB
PHP
37 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* @var \App\View\AppView $this
|
|
* @var \App\Model\Entity\StateGroupAddress $stateGroupAddress
|
|
*/
|
|
?>
|
|
<nav id="actions-sidebar">
|
|
<ul class="nav-horizontal nav-smaller">
|
|
<li class="heading"><?= __('Actions') ?></li>
|
|
<li><?= $this->Html->link(__('Edit State Group Address'), ['action' => 'edit', $stateGroupAddress->id]) ?> </li>
|
|
<li><?= $this->Form->postLink(__('Delete State Group Address'), ['action' => 'delete', $stateGroupAddress->id], ['confirm' => __('Are you sure you want to delete # {0}?', $stateGroupAddress->id)]) ?> </li>
|
|
<li><?= $this->Html->link(__('List State Group Addresses'), ['action' => 'index']) ?> </li>
|
|
<li><?= $this->Html->link(__('New State Group Address'), ['action' => 'add']) ?> </li>
|
|
<li><?= $this->Html->link(__('List State Groups'), ['controller' => 'StateGroups', 'action' => 'index']) ?> </li>
|
|
<li><?= $this->Html->link(__('New State Group'), ['controller' => 'StateGroups', 'action' => 'add']) ?> </li>
|
|
<li><?= $this->Html->link(__('List Address Types'), ['controller' => 'AddressTypes', 'action' => 'index']) ?> </li>
|
|
<li><?= $this->Html->link(__('New Address Type'), ['controller' => 'AddressTypes', 'action' => 'add']) ?> </li>
|
|
</ul>
|
|
</nav>
|
|
<div class="stateGroupAddresses view large-9 medium-8 columns content">
|
|
<h3><?= h($stateGroupAddress->id) ?></h3>
|
|
<table class="vertical-table">
|
|
<tr>
|
|
<th scope="row"><?= __('State Group') ?></th>
|
|
<td><?= $stateGroupAddress->has('state_group') ? $this->Html->link($stateGroupAddress->state_group->name, ['controller' => 'StateGroups', 'action' => 'view', $stateGroupAddress->state_group->id]) : '' ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?= __('Address Type') ?></th>
|
|
<td><?= $stateGroupAddress->has('address_type') ? $this->Html->link($stateGroupAddress->address_type->name, ['controller' => 'AddressTypes', 'action' => 'view', $stateGroupAddress->address_type->id]) : '' ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?= __('Id') ?></th>
|
|
<td><?= $this->Number->format($stateGroupAddress->id) ?></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|