UNPKG

zettapi_client

Version:

Client side CRUD operations in angular to use with zettapi_server rest api to get started quickly in any CMS project

13 lines (12 loc) 668 B
<div class="col-sm-12"> <div class="table-responsive"> <table ng-table="table.params" class="table table-bordered table-hover table-condensed"> <tr ng-repeat="item in $data | filter: searchText"> <td data-title="'Data/Hora'" sortable="'when'">{{item.when | date: 'yyyy.MM.dd HH:mm'}}</td> <td data-title="'Utilizador'" sortable="'who'"><a ng-if="item.who" href="#user/view/{{item.who}}"><i class="fa fa-user"></i> ver perfil</a></td> <td data-title="'Acção'" sortable="'action'">{{item.action}}</td> <td data-title="'Objecto'" sortable="'what'">{{item.where}} ({{item.what}})</td> </tr> </table> </div> </div>