Get create permission working
This commit is contained in:
parent
e8d51b651f
commit
ca934ac162
5 changed files with 166 additions and 14 deletions
|
@ -1,4 +1,12 @@
|
|||
<span class="entity-search-element"><input class="entity-search-control form-control">
|
||||
<span class="entity-search-element" ng-class="isPersistent ? 'persistent' : ''"><input class="entity-search-control form-control">
|
||||
<span class="entity-icon" ng-show="isPersistent">
|
||||
<i class="fa fa-user" ng-show="currentEntity.kind == 'user' && !currentEntity.is_robot" title="User"
|
||||
bs-tooltip="tooltip.title" data-container="body"></i>
|
||||
<i class="fa fa-wrench" ng-show="currentEntity.kind == 'user' && currentEntity.is_robot" title="Robot Account"
|
||||
bs-tooltip="tooltip.title" data-container="body"></i>
|
||||
<i class="fa fa-group" ng-show="currentEntity.kind == 'team'" title="Team"
|
||||
bs-tooltip="tooltip.title" data-container="body"></i>
|
||||
</span>
|
||||
<div class="dropdown">
|
||||
<button class="btn btn-default dropdown-toggle" type="button" id="entityDropdownMenu" data-toggle="dropdown"
|
||||
ng-click="lazyLoad()">
|
||||
|
|
Reference in a new issue