processoNew.html
1.22 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
<div id="newProcesso" class="page-content clearfix" ng-controller="ProcessoController as processoNewController" ng-init="init(inicializarProcesso())">
<div id="newProcesso" ng-if="!processo.id">
<div class="bar-buttons-action fixed">
<div class="row">
<div class="col-sm-8 text-left">
<button class="btn btn-clear" ng-click="saveOrUpdate()" ng-show="edit">
<i class="fa fa-save green"></i>
<translate>LABEL.SALVAR</translate>
</button>
<button class="btn btn-clear" ng-click="resetForm()" ng-show="edit">
<i class="fa fa-eraser yellow-dark"></i>
<translate>LABEL.LIMPAR</translate>
</button>
<button class="btn btn-clear" ng-show="!edit" ng-click="edit = true">
<i class="fa fa-pencil blue"></i>
<translate>LABEL.EDITAR</translate>
</button>
</div>
<div class="col-sm-4 text-right">
<favorito />
<help-button workspace="workspace" />
</div>
</div>
</div>
<breadcrumb ng-workspace="workspace"></breadcrumb>
</div>
<form id="processoNewController.processoForm" name="processoNewController.processoForm" autocomplete="off" novalidate>
<div ng-include src="'/cit-ecm-web/html/processo/metadadosProcesso.html'" />
</form>
</div>