您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

groupedit.html 661B

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 lu-enable-permission="{{ permission }}"/>
  6. </div>
  7. </div>
  8. <div class="form-group" lu-show-permission="LU_PERM_GROUP_GET">
  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>