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 684 B
<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="'Continente'" sortable="'region'">{{item.region}}</td> <td data-title="'Nome'" sortable="'name.common'">{{item.name.common}} ({{item.name.official}})</td> <td data-title="'Capital'" sortable="'capital'">{{item.capital}}</td> <td data-title="'Indicativo(s)'"><span ng-repeat="callingCode in item.callingCode">(+{{callingCode}})<br/></span></td> <td data-title="'Moeda(s)'"><span ng-repeat="currency in item.currency">{{currency}}<br/></span></td> </tr> </table> </div> </div>