pyc-website
main website for pyc inc.
git clone https://9o.is/git/pyc-website.git
purchase_limits.html
(786B)
1 <div data-lift="surround?with=settings-wrap&at=content">
2 <div data-lift="PurchaseLimitList" ng-controller="PurchaseLimitListCtrl" class="row margin-top-10" ng-cloak>
3 <div class="col-xs-12">
4 <div class="well table-responsive">
5 <table class="table break-word">
6 <thead>
7 <tr>
8 <td><span data-lift="Loc.name"></span></td>
9 <td><span data-lift="Loc.ID"></span></td>
10 <td><span data-lift="Loc.password"></span></td>
11 <td><span data-lift="Loc.limit"></span></td>
12 </tr>
13 </thead>
14 <tbody>
15 <tr ng-repeat="user in model.users">
16 <td>{{ user.fname }}</td>
17 <td>{{ user.id }}</td>
18 <td>{{ user.password }}</td>
19 <td>{{ user.limit }}</td>
20 </tr>
21 </tbody>
22 </table>
23 </div>
24 </div>
25 </div>
26 </div>