remove ids from indexes and on attributes view
This commit is contained in:
@@ -11,7 +11,6 @@
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th><?= $this->Paginator->sort('id') ?></th>
|
||||
<th><?= $this->Paginator->sort('name') ?></th>
|
||||
<th><?= $this->Paginator->sort('product_category_id') ?></th>
|
||||
<th><?= $this->Paginator->sort('attribute_type_id') ?></th>
|
||||
@@ -22,7 +21,6 @@
|
||||
<tbody>
|
||||
<?php foreach ($productCategoryAttributes as $productCategoryAttribute): ?>
|
||||
<tr>
|
||||
<td><?= $productCategoryAttribute->id ?></td>
|
||||
<td><?= h($productCategoryAttribute->name) ?></td>
|
||||
<td><?= $productCategoryAttribute->hasValue('product_category') ? $this->Html->link($productCategoryAttribute->product_category->name, ['controller' => 'ProductCategories', 'action' => 'view', $productCategoryAttribute->product_category->id]) : '' ?></td>
|
||||
<td><?= $productCategoryAttribute->attribute_type_id->name ?></td>
|
||||
|
||||
@@ -42,7 +42,6 @@
|
||||
<table>
|
||||
<tr>
|
||||
<th><?= __('Id') ?></th>
|
||||
<th><?= __('Product Category Attribute Id') ?></th>
|
||||
<th><?= __('Attribute Value') ?></th>
|
||||
<th><?= __('Attribute Label') ?></th>
|
||||
<th><?= __('Enabled') ?></th>
|
||||
@@ -51,7 +50,6 @@
|
||||
<?php foreach ($productCategoryAttribute->product_category_attribute_options as $productCategoryAttributeOptions) : ?>
|
||||
<tr>
|
||||
<td><?= h($productCategoryAttributeOptions->id) ?></td>
|
||||
<td><?= h($productCategoryAttributeOptions->product_category_attribute_id) ?></td>
|
||||
<td><?= h($productCategoryAttributeOptions->attribute_value) ?></td>
|
||||
<td><?= h($productCategoryAttributeOptions->attribute_label) ?></td>
|
||||
<td><?= h($productCategoryAttributeOptions->enabled) ?></td>
|
||||
|
||||
Reference in New Issue
Block a user