UNPKG

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.

33 lines 976 B
<div class="table-responsive"> <table class="table table-bordered table-hover"> <thead> <tr> <th>Index</th> <th>Imagem</th> <th>Titulo</th> <th>Texto</th> <th>Texto Botão</th> <th>Link Botão</th> <th>Estado</th> <th></th> </tr> </thead> <tbody> <tr ng-repeat="item in items"> <td>{{item.idSlide}}</td> <td><img ng-src="{{item.image.filepath}}" style="max-width:100px" /></td> <td>{{item.title}}</td> <td>{{item.text}}</td> <td>{{item.btntext}}</td> <td>{{item.btnlink}}</td> <td> <input type="checkbox" ng-disabled="true" ng-model="item.active" /> </td> <td class="text-right"> <entity-modal entity="{{entity}}" item="item" lookup="lookup"></entity-modal> <entity-remove entity="{{entity}}" item="item"></entity-remove> </td> </tr> </tbody> </table> </div>