mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-23 19:31:03 +01:00
80538908a8
- fix ./make.sh watch - rename .jade -> .pug
9 lines
411 B
Plaintext
9 lines
411 B
Plaintext
h3 Inventory
|
|
button.btn.btn-success.btn-xs.pull-right(ng-click="add()") Create Inventory
|
|
|
|
table.table.table-hover
|
|
tbody: tr(ng-repeat="inv in inventory" ng-click="edit(inv)" ng-class="{ danger: inv.removed }" style="cursor: pointer;")
|
|
td
|
|
code {{ inv.type }}
|
|
| {{ inv.name }}
|
|
button.btn.btn-info.btn-xs.pull-right(ng-click="editContent(inv); $event.stopPropagation();") edit inventory content |