zettapi_client
Version:
Client side CRUD operations in angular to use with zettapi_server rest api to get started quickly in any CMS project
16 lines (14 loc) • 622 B
HTML
<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="'timestamp'">{{item.timestamp | date: 'yyyy-MM-dd HH:mm'}}</td>
<td data-title="'Tipo'" sortable="'template'">{{item.template}}</td>
<td><button ng-click="openModal('viewMsg', 'md', item)" type="button" class="btn btn-xs btn-primary">
<i class="fa fa-eye"></i> Ver
</button>
</td>
</tr>
</table>
</div>
</div>