summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-06-03 15:28:01 +0100
committerLester Caine <lester@lsces.co.uk>2026-06-03 15:28:01 +0100
commit4f3243d80abc15dbc5a22ffb03330e2290de1a4d (patch)
tree5a75d968b181ce079ac9a2b1a0fe46ed16ee041a
parent016f5d00f07a4e8c8f8c715f426afbd8c897286a (diff)
downloadstock-4f3243d80abc15dbc5a22ffb03330e2290de1a4d.tar.gz
stock-4f3243d80abc15dbc5a22ffb03330e2290de1a4d.tar.bz2
stock-4f3243d80abc15dbc5a22ffb03330e2290de1a4d.zip
stock: fix blank icons on view_assembly — use colourstrap icons
fa-boxes-stacked and fa-truck don't exist in colourstrap-full.css; replace with icon-box and icon-move which do. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
-rwxr-xr-xtemplates/view_assembly.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/view_assembly.tpl b/templates/view_assembly.tpl
index 6a7ab9c..7da9bb8 100755
--- a/templates/view_assembly.tpl
+++ b/templates/view_assembly.tpl
@@ -4,8 +4,8 @@
{include file="bitpackage:liberty/services_inc.tpl" serviceLocation='icon' serviceHash=$gContent->mInfo}
<a title="{tr}Edit{/tr}" href="{$smarty.const.STOCK_PKG_URL}edit_assembly.php?content_id={$gContent->mContentId}">{booticon iname="fa-pen-to-square" iexplain="Edit Assembly"}</a>
<a title="{tr}Component Order{/tr}" href="{$smarty.const.STOCK_PKG_URL}component_order.php?content_id={$gContent->mContentId}">{booticon iname="fa-sort" iexplain="Component Order"}</a>
- <a title="{tr}View Stock{/tr}" href="{$smarty.const.STOCK_PKG_URL}list_stock.php?assembly_content_id={$gContent->mContentId}">{booticon iname="fa-boxes-stacked" iexplain="View Stock"}</a>
- <a title="{tr}View Movements{/tr}" href="{$smarty.const.STOCK_PKG_URL}list_movements.php?assembly_content_id={$gContent->mContentId}">{booticon iname="fa-truck" iexplain="View Movements"}</a>
+ <a title="{tr}View Stock{/tr}" href="{$smarty.const.STOCK_PKG_URL}list_stock.php?assembly_content_id={$gContent->mContentId}">{booticon iname="icon-box" iexplain="View Stock"}</a>
+ <a title="{tr}View Movements{/tr}" href="{$smarty.const.STOCK_PKG_URL}list_movements.php?assembly_content_id={$gContent->mContentId}">{booticon iname="icon-move" iexplain="View Movements"}</a>
{if $gContent->hasAdminPermission()}
<a title="{tr}Delete Assembly{/tr}" href="{$smarty.const.STOCK_PKG_URL}edit_assembly.php?content_id={$gContent->mContentId}&amp;delete=1">{booticon iname="fa-trash" iexplain="Delete Assembly"}</a>
{/if}