Added icon on inventories view for manage inventory

With the Manage Inventory page being essentially nested below the Edit Inventory page, I have added a new icon and a new button for getting to these pages.
This commit is contained in:
Jared Tabor
2015-03-12 12:16:47 -04:00
parent 9ed89f9622
commit 698f2e7b8f
5 changed files with 38 additions and 12 deletions

View File

@@ -162,6 +162,9 @@ angular.module('GeneratorHelpers', [systemStatus.name])
case 'copy':
icon = "fa-copy";
break;
case 'manage':
icon = "fa-sitemap";
break;
}
icon += (size) ? " " + size : "";
return Icon(icon);