Digital Office Automation System Backend
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

assignment-popup.html 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <div class="modal" ng-controller="KisBpmAssignmentPopupCtrl">
  2. <div class="modal-dialog">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <button type="button" class="close" data-dismiss="modal" aria-hidden="true" ng-click="close()">&times;</button>
  6. <h2 translate>PROPERTY.ASSIGNMENT.TITLE</h2>
  7. </div>
  8. <div class="modal-body">
  9. <div class="row row-no-gutter">
  10. <div class="form-group">
  11. <label for="assigneeField">{{'PROPERTY.ASSIGNMENT.ASSIGNEE' | translate}}</label>
  12. <input type="text" id="assigneeField" class="form-control" ng-model="assignment.assignee" placeholder="{{'PROPERTY.ASSIGNMENT.ASSIGNEE_PLACEHOLDER' | translate}}" />
  13. </div>
  14. </div>
  15. <div class="row row-no-gutter">
  16. <div class="form-group">
  17. <label for="userField">{{'PROPERTY.ASSIGNMENT.CANDIDATE_USERS' | translate}}</label>
  18. <div ng-repeat="candidateUser in assignment.candidateUsers">
  19. <input id="userField" class="form-control" type="text" ng-model="candidateUser.value" />
  20. <i class="glyphicon glyphicon-minus clickable-property" ng-click="removeCandidateUserValue($index)"></i>
  21. <i ng-if="$index == (assignment.candidateUsers.length - 1)" class="glyphicon glyphicon-plus clickable-property" ng-click="addCandidateUserValue($index)"></i>
  22. </div>
  23. </div>
  24. <div class="form-group">
  25. <label for="groupField">{{'PROPERTY.ASSIGNMENT.CANDIDATE_GROUPS' | translate}}</label>
  26. <div ng-repeat="candidateGroup in assignment.candidateGroups">
  27. <input id="groupField" class="form-control" type="text" ng-model="candidateGroup.value" />
  28. <i class="glyphicon glyphicon-minus clickable-property" ng-click="removeCandidateGroupValue($index)"></i>
  29. <i ng-if="$index == (assignment.candidateGroups.length - 1)" class="glyphicon glyphicon-plus clickable-property" ng-click="addCandidateGroupValue($index)"></i>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
  34. <div class="modal-footer">
  35. <button ng-click="close()" class="btn btn-primary" translate>ACTION.CANCEL</button>
  36. <button ng-click="save()" class="btn btn-primary" translate>ACTION.SAVE</button>
  37. </div>
  38. </div>
  39. </div>
  40. </div>