template updates removing ids more
CI / testsuite (mysql, 8.1, ) (push) Failing after 4s Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 4s Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 4s Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 4s Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 4s Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 4s Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s Details
CI / Coding Standard & Static Analysis (push) Failing after 0s Details

This commit is contained in:
Brandon Shipley 2025-03-27 23:07:44 -07:00
parent ad4c16bb9e
commit c1218ac106
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
2 changed files with 0 additions and 6 deletions

View File

@ -30,10 +30,6 @@
<th><?= __('Api Url') ?></th>
<td><?= h($externalProductCatalog->api_url) ?></td>
</tr>
<tr>
<th><?= __('Id') ?></th>
<td><?= $this->Number->format($externalProductCatalog->id) ?></td>
</tr>
<tr>
<th><?= __('Created') ?></th>
<td><?= h($externalProductCatalog->created) ?></td>

View File

@ -39,7 +39,6 @@
<tr>
<th><?= __('Name') ?></th>
<th><?= __('Category Description') ?></th>
<th><?= __('Parent Id') ?></th>
<th><?= __('Enabled') ?></th>
<th class="actions"><?= __('Actions') ?></th>
</tr>
@ -47,7 +46,6 @@
<tr>
<td><?= h($productCategories->name) ?></td>
<td><?= h($productCategories->category_description) ?></td>
<td><?= h($productCategories->parent_id) ?></td>
<td><?= h($productCategories->enabled) ?></td>
<td class="actions">
<?= $this->Html->link(__('View'), ['controller' => 'ProductCategories', 'action' => 'view', $productCategories->id]) ?>