You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

groupedit.html 582B

1234567891011121314
  1. <dialog-ok-cancel title="{{ group.Id == null ? 'Add' : 'Edit'}} group {{ group.Name }}">
  2. <div class="form-group">
  3. <label for="name" class="col-sm-2 control-label">Name</label>
  4. <div class="col-sm-9">
  5. <input id="name" class="form-control" ng-model="group.Name" required/>
  6. </div>
  7. </div>
  8. <div class="form-group">
  9. <button type="button" class="btn btn-default col-sm-offset-2"
  10. ng-click="editPermissions(group)" ng-show="group.Id != null">
  11. Edit Permissions
  12. </button>
  13. </div>
  14. </dialog-ok-cancel>