From 80a7ffb84181ab097ccb192bd828db710839dcdc Mon Sep 17 00:00:00 2001 From: esthermmoturi <112471942+esthermmoturi@users.noreply.github.com> Date: Tue, 29 Oct 2024 11:21:58 +0300 Subject: [PATCH] Move complex task file for grouping --- content/en/building/guides/tasks/pass-data-to-form.md | 11 +++++------ .../{tutorials/tasks-2.md => tasks/complex-tasks.md} | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) rename content/en/building/{tutorials/tasks-2.md => tasks/complex-tasks.md} (99%) diff --git a/content/en/building/guides/tasks/pass-data-to-form.md b/content/en/building/guides/tasks/pass-data-to-form.md index 921e7adec..f8f4f5a52 100644 --- a/content/en/building/guides/tasks/pass-data-to-form.md +++ b/content/en/building/guides/tasks/pass-data-to-form.md @@ -4,11 +4,10 @@ linkTitle: Passing Data from Tasks to Forms description: > Demonstrates how to pass data into an application form via tasks relatedContent: > - building/tutorials/tasks-2 + building/tasks/complex-tasks building/tutorials/app-forms building/reference/tasks - building/guides/forms/form-inputs - + building/guides/forms/form-inputs aliases: - /apps/guides/tasks/pass-data-to-form --- @@ -19,15 +18,15 @@ This guide explains how to pass data from a task into the action _application fo ## Prerequisites -* [Complex Tasks Tutorial]({{< ref "building/tutorials/tasks-2" >}}) +* [Complex Tasks Tutorial]({{< ref "building/tasks/complex-tasks" >}}) * [Application Forms Tutorial]({{< ref "building/tutorials/app-forms" >}}) ## Scenario -Let's look deeper at the scenario from the [Complex Tasks Tutorial]({{< ref "building/tutorials/tasks-2" >}}) where we have an ANC follow-up task which recurs eight times, and we want to ask the user different questions on the first and last follow-up. +Let's look deeper at the scenario from the [Complex Tasks Tutorial]({{< ref "building/tasks/complex-tasks" >}}) where we have an ANC follow-up task which recurs eight times, and we want to ask the user different questions on the first and last follow-up. ## Developing the task -From the [Complex Tasks Tutorial]({{< ref "building/tutorials/tasks-2" >}}), here is the task. +From the [Complex Tasks Tutorial]({{< ref "building/tasks/complex-tasks" >}}), here is the task. ```javascript const { DateTime } = require('luxon'); diff --git a/content/en/building/tutorials/tasks-2.md b/content/en/building/tasks/complex-tasks.md similarity index 99% rename from content/en/building/tutorials/tasks-2.md rename to content/en/building/tasks/complex-tasks.md index 25666caa6..91caffc93 100644 --- a/content/en/building/tutorials/tasks-2.md +++ b/content/en/building/tasks/complex-tasks.md @@ -8,8 +8,8 @@ relatedContent: > building/tasks/simple-tasks building/reference/tasks building/examples/anc - aliases: + - /building/tutorials/tasks-2 - /apps/tutorials/tasks-2 ---