|  | @@ -1,4 +1,19 @@
 | 
		
	
		
			
			| 1 | 1 |  <div layout="column" ng-cloak class="md-inline-form" angular-busy="appUtils.cgBusy('pkguid.edit')">
 | 
		
	
		
			
			|  | 2 | +    <div flex>
 | 
		
	
		
			
			|  | 3 | +
 | 
		
	
		
			
			|  | 4 | +        <md-toolbar class="md-table-toolbar md-default" >
 | 
		
	
		
			
			|  | 5 | +            <div class="md-toolbar-tools">
 | 
		
	
		
			
			|  | 6 | +                <md-button class="md-icon-button" ui-sref="pkguid" title="{{ 'common.back' | translate }}">
 | 
		
	
		
			
			|  | 7 | +                    <md-icon class="material-icons">arrow_back</md-icon>
 | 
		
	
		
			
			|  | 8 | +                </md-button>
 | 
		
	
		
			
			|  | 9 | +                <span>{{ 'pkguid.name' | translate:{count:selected.length} }}</span>
 | 
		
	
		
			
			|  | 10 | +                <span flex></span>
 | 
		
	
		
			
			|  | 11 | +                <md-button class="md-icon-button" ng-show="pkguid.id != null" ng-click="askRemoveOne(pkguid)" title="{{ 'common.delete' | translate }}">
 | 
		
	
		
			
			|  | 12 | +                    <md-icon class="material-icons">delete</md-icon>
 | 
		
	
		
			
			|  | 13 | +                </md-button>
 | 
		
	
		
			
			|  | 14 | +            </div>
 | 
		
	
		
			
			|  | 15 | +        </md-toolbar>
 | 
		
	
		
			
			|  | 16 | +    </div>
 | 
		
	
		
			
			| 2 | 17 |      <md-content layout-padding>
 | 
		
	
		
			
			| 3 | 18 |          <form name="editForm">
 | 
		
	
		
			
			| 4 | 19 |              <div layout-gt-sm="row">
 | 
		
	
	
		
			
			|  | @@ -15,12 +30,7 @@
 | 
		
	
		
			
			| 15 | 30 |              <div flex>
 | 
		
	
		
			
			| 16 | 31 |                  <md-progress-linear ng-disabled="!running" md-mode="indeterminate"></md-progress-linear>
 | 
		
	
		
			
			| 17 | 32 |              </div>
 | 
		
	
		
			
			| 18 |  | -            <div layout="row" layout-align="space-between center">
 | 
		
	
		
			
			| 19 |  | -                <md-button class="md-raised md-primary" type="submit" ng-click="!editForm.$invalid && submit()">{{ 'common.save' | translate }}</md-button>
 | 
		
	
		
			
			| 20 |  | -                <md-button class="md-warn md-icon-button" ng-show="pkguid.id != null" ng-click="askRemoveOne(pkguid)" title="{{ 'common.delete' | translate }}">
 | 
		
	
		
			
			| 21 |  | -                    <md-icon class="material-icons">delete</md-icon>
 | 
		
	
		
			
			| 22 |  | -                </md-button>
 | 
		
	
		
			
			| 23 |  | -            </div>
 | 
		
	
		
			
			|  | 33 | +            <md-button class="md-raised md-primary" type="submit" ng-click="!editForm.$invalid && submit()">{{ 'common.save' | translate }}</md-button>
 | 
		
	
		
			
			| 24 | 34 |              <div ng-repeat="error in busy.errors('pkguid.edit')" class="isa_error">
 | 
		
	
		
			
			| 25 | 35 |                  <i class="fa fa-times-circle"></i>
 | 
		
	
		
			
			| 26 | 36 |                  {{ error.data.message }}
 |