From 2b5a3ac87d1fe2ffe98cd52ff2814395c453ccc5 Mon Sep 17 00:00:00 2001 From: Noah Miller Date: Mon, 2 Oct 2023 16:54:35 -0400 Subject: [PATCH] Add in-app docs re prefilling multiple ids in repeating blocks --- .../ang/afGuiEditor/entityConfig/Options.html | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/ext/afform/admin/ang/afGuiEditor/entityConfig/Options.html b/ext/afform/admin/ang/afGuiEditor/entityConfig/Options.html index 15878ad8a9..3e5ff44bb9 100644 --- a/ext/afform/admin/ang/afGuiEditor/entityConfig/Options.html +++ b/ext/afform/admin/ang/afGuiEditor/entityConfig/Options.html @@ -27,9 +27,17 @@ {{:: ts('Without Role-Based access, users of the form will be able to view and update any %1 by changing the id in the URL.', {1: getMeta().label}) }}
- {{:: ts('Update %1 by including the id in the link to this form:', {1: getMeta().label}) }} - - {{ ($ctrl.editor.getLink() || '') + '#?' + $ctrl.entity.name + '=123' }} - +

+ {{:: ts('Update %1 by including the id in the link to this form:', {1: $ctrl.entity.name}) }} + + {{ ($ctrl.editor.getLink() || '') + '#?' + $ctrl.entity.name + '=123' }} + +

+

+ {{:: ts('If you have made a repeating container for %1, you may update multiple %2s using comma-separated ids:', {1: $ctrl.entity.name, 2: getMeta().label}) }} + + {{ ($ctrl.editor.getLink() || '') + '#?' + $ctrl.entity.name + '=123,456' }} + +

-- 2.25.1