You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.4 KiB

<!-- AcidentesTrabalhoView -->
<section id="AcidentesTrabalhoView">
<!-- list -->
<section ng-class="{'': showList, 'hidden': !showList}">
<div class="col-lg-12 m-t-15">
<table class="table table-hover table-striped m-b-5" data-store="storeAcidentesTrabalho" datatable>
<thead>
<tr>
<th class="col-md-6">Data</th>
<th class="col-md-6">Descrição</th>
<th>&nbsp;</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="item in storeAcidentesTrabalho.items">
<td><span ng-bind="item.data | date: 'yyyy-MM-dd'"></span></td>
<td><span ng-bind="item.descricao"></span></td>
<td>
<button data-toggle="tooltip" data-placement="left" title="Download do Documento" ng-click="download(item)" class="btn btn-xs btn-default pull-right m-r-5">
<i class="glyphicon glyphicon-download-alt"></i>
</button>
</td>
</tr>
</tbody>
</table>
<paging-toolbar store="storeAcidentesTrabalho" show-pager="false"></paging-toolbar>
</div>
</section>
</section>