processoNew.html 1.22 KB
<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>