mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 14:11:54 +00:00
32 lines
1.7 KiB
HTML
32 lines
1.7 KiB
HTML
<div class="content-container" ng-controller="FixedDepositProductController">
|
|
<ul class="breadcrumb">
|
|
<li><a href="#/products">{{'label.anchor.products' | translate}}</a></li>
|
|
<li class="active">{{'label.anchor.fixeddepositproducts' | translate}}</li>
|
|
</ul>
|
|
<div class="card well">
|
|
<div class="row">
|
|
<div class="col-md-9 col-sm-9">
|
|
<input ng-autofocus="true" ng-model="filterText" type="text" ng-keyup="onFilter()" class="form-control" placeholder="{{'label.input.filterbynameshortname' | translate}}">
|
|
</div>
|
|
<div class="col-md-3 col-sm-3 paddedbottom20">
|
|
<a href="#/createfixeddepositproduct" has-permission='CREATE_FIXEDDEPOSITPRODUCT' class="btn btn-primary pull-right"><i class="fa fa-plus "></i> {{'label.button.createfixeddepositproduct' | translate}}</a>
|
|
</div>
|
|
</div>
|
|
<table class="table">
|
|
<thead>
|
|
<tr class="graybg">
|
|
<th>{{'label.heading.name' | translate}}</th>
|
|
<th>{{'label.heading.shortname' | translate}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="pointer-main" dir-paginate="product in depositproducts | orderBy:'name':reverse | filter:filterText | itemsPerPage: FixedDepositsPerPage">
|
|
<td class="pointer" data-ng-click="routeTo(product.id)">{{product.name}}</td>
|
|
<td class="pointer" data-ng-click="routeTo(product.id)">{{product.shortName}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<dir-pagination-controls boundary-links="true" template-url="bower_components/angular-utils-pagination/dirPagination.tpl.html"></dir-pagination-controls>
|
|
</div>
|
|
</div>
|