template updates removing ids more

This commit is contained in:
2025-03-27 23:07:44 -07:00
parent ad4c16bb9e
commit c1218ac106
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]) ?>