Semaphore/public/html/projects/inventory/list.pug

9 lines
411 B
Plaintext
Raw Normal View History

2016-04-11 18:54:35 +02:00
h3 Inventory
button.btn.btn-success.btn-xs.pull-right(ng-click="add()") Create Inventory
2016-04-11 18:54:35 +02:00
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