diff --git a/web/src/locales/en.po b/web/src/locales/en.po index ac173bc2f3..95ab42d42e 100644 --- a/web/src/locales/en.po +++ b/web/src/locales/en.po @@ -2826,6 +2826,7 @@ msgstr "Optionally set this to your parent domain, if you want authentication an #: src/pages/flows/BoundStagesList.ts #: src/pages/flows/StageBindingForm.ts #: src/pages/policies/BoundPoliciesList.ts +#: src/pages/policies/BoundPoliciesList.ts #: src/pages/policies/PolicyBindingForm.ts #: src/pages/stages/prompt/PromptForm.ts #: src/pages/stages/prompt/PromptListPage.ts @@ -2973,6 +2974,7 @@ msgstr "Policy / Group / User Bindings" msgid "Policy / Policies" msgstr "Policy / Policies" +#: src/pages/policies/BoundPoliciesList.ts #: src/pages/policies/BoundPoliciesList.ts msgid "Policy / User / Group" msgstr "Policy / User / Group" @@ -3716,6 +3718,7 @@ msgstr "Sources" msgid "Sources of identities, which can either be synced into authentik's database, like LDAP, or can be used by users to authenticate and enroll themselves, like OAuth and social logins" msgstr "Sources of identities, which can either be synced into authentik's database, like LDAP, or can be used by users to authenticate and enroll themselves, like OAuth and social logins" +#: src/pages/flows/BoundStagesList.ts #: src/pages/flows/StageBindingForm.ts msgid "Stage" msgstr "Stage" @@ -3736,6 +3739,10 @@ msgstr "Stage Configuration" msgid "Stage binding(s)" msgstr "Stage binding(s)" +#: src/pages/flows/BoundStagesList.ts +msgid "Stage type" +msgstr "Stage type" + #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts msgid "Stage used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again." msgstr "Stage used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again." diff --git a/web/src/locales/pseudo-LOCALE.po b/web/src/locales/pseudo-LOCALE.po index 1a9d0ae1fc..21142156db 100644 --- a/web/src/locales/pseudo-LOCALE.po +++ b/web/src/locales/pseudo-LOCALE.po @@ -2818,6 +2818,7 @@ msgstr "" #: src/pages/flows/BoundStagesList.ts #: src/pages/flows/StageBindingForm.ts #: src/pages/policies/BoundPoliciesList.ts +#: src/pages/policies/BoundPoliciesList.ts #: src/pages/policies/PolicyBindingForm.ts #: src/pages/stages/prompt/PromptForm.ts #: src/pages/stages/prompt/PromptListPage.ts @@ -2965,6 +2966,7 @@ msgstr "" msgid "Policy / Policies" msgstr "" +#: src/pages/policies/BoundPoliciesList.ts #: src/pages/policies/BoundPoliciesList.ts msgid "Policy / User / Group" msgstr "" @@ -3708,6 +3710,7 @@ msgstr "" msgid "Sources of identities, which can either be synced into authentik's database, like LDAP, or can be used by users to authenticate and enroll themselves, like OAuth and social logins" msgstr "" +#: src/pages/flows/BoundStagesList.ts #: src/pages/flows/StageBindingForm.ts msgid "Stage" msgstr "" @@ -3728,6 +3731,10 @@ msgstr "" msgid "Stage binding(s)" msgstr "" +#: src/pages/flows/BoundStagesList.ts +msgid "Stage type" +msgstr "" + #: src/pages/stages/authenticator_validate/AuthenticatorValidateStageForm.ts msgid "Stage used to configure Authenticator when user doesn't have any compatible devices. After this configuration Stage passes, the user is not prompted again." msgstr "" diff --git a/web/src/pages/flows/BoundStagesList.ts b/web/src/pages/flows/BoundStagesList.ts index ab83c39c72..4c30865de3 100644 --- a/web/src/pages/flows/BoundStagesList.ts +++ b/web/src/pages/flows/BoundStagesList.ts @@ -48,6 +48,12 @@ export class BoundStagesList extends Table { return html` { + return [ + { key: t`Stage`, value: item.stageObj?.name }, + { key: t`Stage type`, value: item.stageObj?.verboseName }, + ]; + }} .usedBy=${(item: FlowStageBinding) => { return new FlowsApi(DEFAULT_CONFIG).flowsBindingsUsedByList({ fsbUuid: item.pk, diff --git a/web/src/pages/policies/BoundPoliciesList.ts b/web/src/pages/policies/BoundPoliciesList.ts index a33b4f65f6..14fdaaa0ef 100644 --- a/web/src/pages/policies/BoundPoliciesList.ts +++ b/web/src/pages/policies/BoundPoliciesList.ts @@ -100,6 +100,12 @@ export class BoundPoliciesList extends Table { return html` { + return [ + { key: t`Order`, value: item.order }, + { key: t`Policy / User / Group`, value: this.getPolicyUserGroupRow(item) }, + ]; + }} .usedBy=${(item: PolicyBinding) => { return new PoliciesApi(DEFAULT_CONFIG).policiesBindingsUsedByList({ policyBindingUuid: item.pk,