mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Merge branch 'develop-ux-wip' of github.com:grafana/grafana into develop-newgrid-rows
This commit is contained in:
commit
02bb92a126
@ -9,7 +9,7 @@
|
|||||||
Create User Group
|
Create User Group
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="gf-form pull-right width-15 gf-form-group">
|
<div class="gf-form width-15 gf-form-group">
|
||||||
<span style="position: relative;">
|
<span style="position: relative;">
|
||||||
<input type="text" class="gf-form-input" placeholder="Find User Group by name" tabindex="1" give-focus="true"
|
<input type="text" class="gf-form-input" placeholder="Find User Group by name" tabindex="1" give-focus="true"
|
||||||
ng-model="ctrl.query" ng-model-options="{ debounce: 500 }" spellcheck='false' ng-change="ctrl.get()" />
|
ng-model="ctrl.query" ng-model-options="{ debounce: 500 }" spellcheck='false' ng-change="ctrl.get()" />
|
||||||
@ -19,15 +19,17 @@
|
|||||||
<table class="filter-table form-inline" ng-show="ctrl.userGroups.length > 0">
|
<table class="filter-table form-inline" ng-show="ctrl.userGroups.length > 0">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Id</th>
|
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
|
<th>Members</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="userGroup in ctrl.userGroups">
|
<tr ng-repeat="userGroup in ctrl.userGroups">
|
||||||
<td>{{userGroup.id}}</td>
|
<td>
|
||||||
<td>{{userGroup.name}}</td>
|
<a href="org/user-groups/edit/{{userGroup.id}}">{{userGroup.name}}</a>
|
||||||
|
</td>
|
||||||
|
<td>#Count</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<a href="org/user-groups/edit/{{userGroup.id}}" class="btn btn-inverse btn-small">
|
<a href="org/user-groups/edit/{{userGroup.id}}" class="btn btn-inverse btn-small">
|
||||||
<i class="fa fa-edit"></i>
|
<i class="fa fa-edit"></i>
|
||||||
|
Loading…
Reference in New Issue
Block a user