Quellcode durchsuchen

Moved around the columns a bit

Matt vor 8 Jahren
Ursprung
Commit
e79dbc7cec
1 geänderte Dateien mit 6 neuen und 4 gelöschten Zeilen
  1. 6 4
      public/app/features/org/partials/user_groups.html

+ 6 - 4
public/app/features/org/partials/user_groups.html

@@ -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>{{userGroup.name}}</td>
+          <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>