processoList.html
2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<div id="searchProcesso" class="page-content" ng-controller="ProcessoListController">
<div class="bar-buttons-action fixed">
<div class="row">
<div class="col-sm-8 text-left">
<button class="btn btn-clear" ng-click="$showPageEditWorkspace(workspace); resetForm();">
<i class="fa fa-plus-circle yellow-dark"></i>
<translate>LABEL.CADASTRAR</translate>
</button>
<button class="btn btn-clear" ng-click="abrirVisualizar(false);">
<i class="fa fa-search blue"></i>
<translate>LABEL.VISUALIZAR</translate>
</button>
<button class="btn btn-clear" ng-click="abrirVisualizar(true);">
<i class="fa fa-pencil blue"></i>
<translate>LABEL.EDITAR</translate>
</button>
<button class="btn btn-clear" ng-click="remove();">
<i class="fa fa-times red"></i>
<translate>LABEL.REMOVER</translate>
</button>
<span class="divider-vertical"></span>
<filtros ng-filter="filterCriteria" ng-workspace="workspace"></filtros>
</div><!-- .col -->
<div class="col-sm-4 text-right">
<favorito/>
<help-button workspace="workspace" />
</div><!-- .col -->
</div><!-- .row -->
</div><!-- .bar-buttons-action -->
<h1 class="title"><translate>LABEL.PROCESSO</translate></h1>
<ul class="breadcrumb">
<li>
<translate>LABEL.MENU</translate>
</li>
<li>
ECM
</li>
<li class="active">
<translate>LABEL.PROCESSO</translate>
</li>
</ul>
<list-view ng-lista="processoList" ng-repository="ProcessoRepository" ng-use-custom-remove="false" ng-headers="headers" ng-filter-criteria="filterCriteria" ng-item-selecionado="processoChecked"></list-view>
</div><!-- .page-content -->