18 lines
706 B
HTML
18 lines
706 B
HTML
<section class="block section-grid orderSet-dashboard-container">
|
|
<div class="clearfix section-title-wrapper">
|
|
<h2 class="section-title fl">Order Set</h2>
|
|
<button class="fr small-btn grid-row-element orderSet-Create" ng-click="createOrEditOrderSet()"> Create New</button>
|
|
|
|
</div>
|
|
|
|
<table class="">
|
|
<tr>
|
|
<th><strong>Name</strong></th>
|
|
<th><strong>Action</strong></th>
|
|
</tr>
|
|
<tr ng-repeat="orderSet in orderSets">
|
|
<td><a ng-click="createOrEditOrderSet(orderSet.uuid);">{{orderSet.name}}</a></td>
|
|
<td><input type="button" ng-click="removeOrderSet(orderSet)" value="X"></td>
|
|
</tr>
|
|
</table>
|
|
</section> |