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.
13 lines (12 loc) • 619 B
HTML
<div class="table-responsive">
<table ng-table="table.params" class="table table-bordered table-hover">
<tr ng-repeat="item in $data">
<td data-title="'Módulo Príncipal'" sortable="'is_core'">{{item.is_core ? 'Sim' : 'Não'}}</td>
<td data-title="'Nome'" sortable="'name'">{{item.name}}</td>
<td data-title="'Preços/Escalão'"><span ng-repeat="price in item.price"><strong>{{price.index}}:</strong> {{price.value}}€ </span></td>
<td class="text-right">
<entity-modal entity="{{entity}}" item="item" lookup="lookup"></entity-modal>
</td>
</tr>
</table>
</div>