mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
14 lines
397 B
Plaintext
14 lines
397 B
Plaintext
|
h3 Inventory
|
||
|
button.btn.btn-default.btn-xs.pull-right(ng-click="add()") Create Inventory
|
||
|
|
||
|
table.table
|
||
|
thead: tr
|
||
|
th Name
|
||
|
th Type
|
||
|
th
|
||
|
th
|
||
|
tbody: tr(ng-repeat="inv in inventory")
|
||
|
td {{ inv.name }}
|
||
|
td {{ inv.type }}
|
||
|
td: button.btn.btn-default.btn-xs(ng-click="editInventory(inv)") edit inventory
|
||
|
td: button.btn.btn-danger.btn-xs.pull-right(ng-click="remove(inv)") delete
|