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 | 1x 2x 2x 1x 1x 2x 1x 2x 1x 2x 2x 1x 1x 1x 2x 1x 2x 1x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 1x 1x 2x 1x 1x 2x | <div class="link">
<a [routerLink]="['/tag', qualifiedTag]" [appTitle]="user">{{ user?.name || ext?.name || localTag }}</a>
@if (user?.name) {
<span class="host">({{ qualifiedTag }})</span>
} @else if (origin) {
<span class="host">({{ origin }})</span>
}
</div>
<div class="stack">
<div class="info">
<span>{{ role.toLowerCase().replace('role_', '') }}</span>
</div>
<div class="actions">
@if (!created && store.account.admin) {
<app-confirm-action #action [action]="copy$" i18n>install</app-confirm-action>
} @else if (!local) {
<app-inline-button #action [action]="copy$" i18n>copy</app-inline-button>
}
@if (created && local && store.account.admin) {
<a class="fake-link" (click)="editing = !editing" i18n>@if (editForm.dirty) {*edit*} @else {edit}</a>
} @else {
<a class="fake-link" (click)="viewSource = !viewSource" i18n>source</a>
}
<a class="fake-link" (click)="download()" i18n>download</a>
@if (store.account.root && store.account.mod && config.scim && !profile) {
<app-inline-button #action [action]="activate$" i18n>sync</app-inline-button>
}
@if (profile && writeAccess) {
<app-inline-password #action [action]="setPassword$" i18n>password</app-inline-password>
}
@if (created || profile) {
@if (store.account.mod && writeAccess) {
<app-confirm-action #action [action]="ban$" i18n>ban</app-confirm-action>
<app-inline-select #action [action]="setRole$" [value]="role">
<span i18n>role</span>
<option value="ROLE_ADMIN" i18n>admin</option>
<option value="ROLE_MOD" i18n>mod</option>
<option value="ROLE_EDITOR" i18n>editor</option>
<option value="ROLE_USER" i18n>user</option>
<option value="ROLE_VIEWER" i18n>viewer</option>
<option value="ROLE_BANNED" i18n>banned</option>
</app-inline-select>
@if (profile) {
@if (!profile.active) {
<app-inline-button #action [action]="activate$" i18n>activate</app-inline-button>
} @else {
<app-inline-button #action [action]="deactivate$" i18n>deactivate</app-inline-button>
}
}
}
@if ((!profile || store.account.root) && store.account.mod || writeAccess) {
<app-confirm-action #action [action]="delete$" i18n>delete</app-confirm-action>
}
}
@if (created && (store.account.mod || writeAccess)) {
@if (user?.pubKey) {
<app-confirm-action #action [action]="keygen$"
i18n-warning warning="This will overwrite existing key!"
i18n>keygen</app-confirm-action>
} @else {
<app-confirm-action #action [action]="keygen$" i18n>keygen</app-confirm-action>
}
}
</div>
</div>
@if (editing) {
<form class="form" [formGroup]="editForm" (ngSubmit)="save()">
<app-user-form #refForm [group]="editForm"
[externalErrors]="externalErrors"></app-user-form>
@for (e of serverError; track e) {
<span><!-- Unexpected Error --></span>
<div class="error">{{ e }}</div>
}
<span><!-- Buttons --></span>
<span class="buttons right">
<button type="submit" [disabled]="submitted && !editForm.valid" i18n>save</button>
<button type="button" (click)="editing = false" i18n>cancel</button>
</span>
</form>
} @else if (viewSource) {
<form class="form" [formGroup]="editForm">
<app-user-form #refForm [group]="editForm"></app-user-form>
</form>
} @else {
@for (e of serverError; track e) {
<div class="error">{{ e }}</div>
}
}
|