mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
git-subtree-dir: community_server git-subtree-mainline: ff11f6efe35bba180260fe84077bcd94298895c1 git-subtree-split: b6544b9e69fb85d4da100934675323c3e8c8ef67
34 lines
1.4 KiB
PHP
34 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* @var \App\View\AppView $this
|
|
* @var \App\Model\Entity\TransactionGroupAllowtrade $transactionGroupAllowtrade
|
|
*/
|
|
?>
|
|
<nav id="actions-sidebar">
|
|
<ul class="nav-horizontal nav-smaller">
|
|
<li class="heading"><?= __('Actions') ?></li>
|
|
<li><?= $this->Form->postLink(
|
|
__('Delete'),
|
|
['action' => 'delete', $transactionGroupAllowtrade->id],
|
|
['confirm' => __('Are you sure you want to delete # {0}?', $transactionGroupAllowtrade->id)]
|
|
)
|
|
?></li>
|
|
<li><?= $this->Html->link(__('List Transaction Group Allowtrades'), ['action' => 'index']) ?></li>
|
|
<li><?= $this->Html->link(__('List Transactions'), ['controller' => 'Transactions', 'action' => 'index']) ?></li>
|
|
<li><?= $this->Html->link(__('New Transaction'), ['controller' => 'Transactions', 'action' => 'add']) ?></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="transactionGroupAllowtrades form large-9 medium-8 columns content">
|
|
<?= $this->Form->create($transactionGroupAllowtrade) ?>
|
|
<fieldset>
|
|
<legend><?= __('Edit Transaction Group Allowtrade') ?></legend>
|
|
<?php
|
|
echo $this->Form->control('transaction_id', ['options' => $transactions]);
|
|
echo $this->Form->control('group_id');
|
|
echo $this->Form->control('allow');
|
|
?>
|
|
</fieldset>
|
|
<?= $this->Form->button(__('Submit')) ?>
|
|
<?= $this->Form->end() ?>
|
|
</div>
|