zettapi_client
Version:
Client side CRUD operations in angular to use with zettapi_server rest api to get started quickly in any CMS project
21 lines (20 loc) • 568 B
HTML
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Nome</th>
<th>Capital</th>
<th>Indicativo</th>
<th>Moeda</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in items">
<td>{{item.name.common}} ({{item.name.official}})</td>
<td>{{item.capital}}</td>
<td><span ng-repeat="cc in item.callingCode">(+{{cc}})<br/></span></td>
<td><span ng-repeat="c in item.currency">{{c}}<br/></span></td>
</tr>
</tbody>
</table>
</div>