ADD filtering and searching 0.9.7
This commit is contained in:
@ -62,10 +62,24 @@ use Joomla\CMS\Layout\LayoutHelper;
|
||||
<?= $item->id ?>
|
||||
</td>
|
||||
<td>
|
||||
<a href="<?= Route::_('index.php?option=com_depot&task=part.edit&id=' .
|
||||
(int) $item->id) ?>" title="<?= Text::_('JACTION_EDIT') ?>">
|
||||
<?= $this->escape($item->component_name); ?>
|
||||
</a>
|
||||
<div class="break-word">
|
||||
<a href="<?= Route::_('index.php?option=com_depot&task=part.edit&id=' .
|
||||
(int) $item->id) ?>" title="<?= Text::_('JACTION_EDIT') ?>">
|
||||
<?= $this->escape($item->component_name); ?>
|
||||
</a>
|
||||
</div>
|
||||
<div class="small break-word" role="button" title="<?= $item->package_description ?>">
|
||||
<?= $item->package_name; ?>
|
||||
<?php if (!empty($item->mounting_style)): ?>
|
||||
<div class="small break-word">
|
||||
<?= Text::_('COM_DEPOT_FIELD_PACKAGE_MOUNTING_STYLE_LABEL') . ': '; ?>
|
||||
<?= Text::alt(
|
||||
'COM_DEPOT_LIST_MOUNTING_STYLE_' . $item->mounting_style,
|
||||
Text::_('COM_DEPOT_LIST_MOUNTING_STYLE_UNKNOWN')
|
||||
); ?>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</td>
|
||||
<td>
|
||||
<?= $this->escape($item->quantity); ?>
|
||||
|
Reference in New Issue
Block a user