zettapi_client
Version:
Admin panel and client-side CRUD operations in angular to use with zettapi_server rest api to get started quickly in any CMS project.
11 lines (10 loc) • 438 B
HTML
<div class="col-sm-12">
<div class="table-responsive">
<table ng-table="table.params" class="table table-striped table-condensed">
<tr ng-repeat="item in $data">
<td data-title="'Data/Hora'" sortable="'created_at'" class="text-nowrap">{{item.created_at | date: 'yyyy-MM-dd HH:mm'}}</td>
<td data-title="'Motivo'" sortable="'reason'">{{item.reason | limitTo: 150}}</td>
</tr>
</table>
</div>
</div>