@if (userData().editable) {
@if (authService.actionsAllowed(["updateuser", "resolverread"])) {
}
@if (authService.actionAllowed("deleteuser")) {
}
}
@for (col of detailsColumns(); track $index) {
@for (item of col; track item.key) {
{{ item.label }}:
@if (Array.isArray(item.value) && item.value.length > 1) {
@for (val of item.value; track val) {
- {{ val }}
}
} @else {
{{ item.value }}
}
}
}
@if (userService.userAttributesList().length > 0) {
@for (col of customAttributeColumns(); track $index) {
@for (attr of col; track attr.key) {
{{ attr.key }}:
{{ attr.value || "-" }}
@if (deletableAttributes().includes(attr.key) || deletableAttributes().includes("*")) {
} @else {
}
}
}
}