@for (g of filteredVariables(); track g.group?.name || '') {
@if (g.group) {
{{ g.group.description | i18n }}
} @else {
{{ 'PAC.Copilot.SystemVariables' | translate: { Default: 'System Variables' } }}
}
@for (item of g.variables; track item.name) {
@if (shouldShowVariable(item, g)) {
-
@for (level of getPaddingLevels(item); track level) {
}
@if (isVariableExpandable(item)) {
}
{{ item.description | i18n }}
{{ item.type }}
}
}
}
@if (loading()) {
}