Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | 1x | <tabset *ngIf="selection.hasSingleSelection"> <tab i18n-heading heading="Details"> <div *ngIf="user"> <table class="table table-striped table-bordered"> <tbody> <tr> <td i18n class="bold col-sm-1">Username</td> <td class="col-sm-3">{{ user.uid }}</td> </tr> <tr> <td i18n class="bold col-sm-1">Full name</td> <td class="col-sm-3">{{ user.display_name }}</td> </tr> <tr *ngIf="user.email.length"> <td i18n class="bold col-sm-1">Email address</td> <td class="col-sm-3">{{ user.email }}</td> </tr> <tr> <td i18n class="bold col-sm-1">Suspended</td> <td class="col-sm-3">{{ user.suspended | booleanText }}</td> </tr> <tr> <td i18n class="bold col-sm-1">System</td> <td class="col-sm-3" i18n>{user.system, select, 1 {Yes} 0 {No}}</td> </tr> <tr> <td i18n class="bold col-sm-1">Maximum buckets</td> <td class="col-sm-3">{{ user.max_buckets }}</td> </tr> <tr *ngIf="user.subusers && user.subusers.length"> <td i18n class="bold col-sm-1">Subusers</td> <td class="col-sm-3"> <div *ngFor="let subuser of user.subusers"> {{ subuser.id }} ({{ subuser.permissions }}) </div> </td> </tr> <tr *ngIf="user.caps && user.caps.length"> <td i18n class="bold col-sm-1">Capabilities</td> <td class="col-sm-3"> <div *ngFor="let cap of user.caps"> {{ cap.type }} ({{ cap.perm }}) </div> </td> </tr> </tbody> </table> <!-- User quota --> <div *ngIf="user.user_quota"> <legend i18n>User quota</legend> <table class="table table-striped table-bordered"> <tbody> <tr> <td i18n class="bold col-sm-1">Enabled</td> <td class="col-sm-3">{{ user.user_quota.enabled | booleanText }}</td> </tr> <tr> <td i18n class="bold col-sm-1">Maximum size</td> <td *ngIf="user.user_quota.max_size <= -1" i18n class="col-sm-3">Unlimited</td> <td *ngIf="user.user_quota.max_size > -1" class="col-sm-3"> {{ user.user_quota.max_size | dimlessBinary }} </td> </tr> <tr> <td i18n class="bold col-sm-1">Maximum objects</td> <td *ngIf="user.user_quota.max_objects <= -1" i18n class="col-sm-3">Unlimited</td> <td *ngIf="user.user_quota.max_objects > -1" class="col-sm-3"> {{ user.user_quota.max_objects }} </td> </tr> </tbody> </table> </div> <!-- Bucket quota --> <div *ngIf="user.bucket_quota"> <legend i18n>Bucket quota</legend> <table class="table table-striped table-bordered"> <tbody> <tr> <td i18n class="bold col-sm-1">Enabled</td> <td class="col-sm-3">{{ user.bucket_quota.enabled | booleanText }}</td> </tr> <tr> <td i18n class="bold col-sm-1">Maximum size</td> <td *ngIf="user.bucket_quota.max_size <= -1" i18n class="col-sm-3">Unlimited</td> <td *ngIf="user.bucket_quota.max_size > -1" class="col-sm-3"> {{ user.bucket_quota.max_size | dimlessBinary }} </td> </tr> <tr> <td i18n class="bold col-sm-1">Maximum objects</td> <td *ngIf="user.bucket_quota.max_objects <= -1" i18n class="col-sm-3">Unlimited</td> <td *ngIf="user.bucket_quota.max_objects > -1" class="col-sm-3"> {{ user.bucket_quota.max_objects }} </td> </tr> </tbody> </table> </div> </div> </tab> <tab i18n-heading heading="Keys"> <cd-table [data]="keys" [columns]="keysColumns" columnMode="flex" selectionType="multi" forceIdentifier="true" (updateSelection)="updateKeysSelection($event)"> <div class="table-actions"> <div class="btn-group" dropdown> <button type="button" class="btn btn-sm btn-primary" [disabled]="!keysSelection.hasSingleSelection" (click)="showKeyModal()"> <i class="fa fa-eye"></i> <ng-container i18n>Show</ng-container> </button> </div> </div> </cd-table> </tab> </tabset> |