Files
InventoryTraker-Box/InventoryTraker.Web/Views/Customer/Index.cshtml
T
2016-08-08 14:47:35 -04:00

15 lines
381 B
Plaintext

@model dynamic
@{
ViewBag.Title = "Customers";
}
<div ng-controller="CustomerListController as vm">
<h1 class="page-header">
Customers
<a class="pull-right" href="" ng-click="vm.add()"><i class="fa fa-plus-circle"></i></a>
</h1>
<div class="customer-list">
<customer-details ng-repeat="customer in vm.customers" customer="customer"></customer-details>
</div>
</div>