diff --git a/examples/2-in-depth/2-5-loops/multi-instance/multi-instance.bpmn b/examples/2-in-depth/2-5-loops/multi-instance/multi-instance.bpmn index 914be3a4..4e24d714 100644 --- a/examples/2-in-depth/2-5-loops/multi-instance/multi-instance.bpmn +++ b/examples/2-in-depth/2-5-loops/multi-instance/multi-instance.bpmn @@ -15,46 +15,22 @@ - This is an example **Manual Task**. A **Manual Task** is designed to allow someone to complete a task outside of the system and then report back that it is complete. You can click the *Continue* button to proceed. When you are done running this process, you can edit the **Process Model** to include a: - - * **Script Task** - write a short snippet of python code to update some data - * **User Task** - generate a form that collects information from a user - * **Service Task** - communicate with an external API to fetch or update some data. - -You can also change the text you are reading here by updating the *Instructions* on this example manual task. + Flow_17db3yp Flow_12pkbxb composers = [ { "composer": "Johann Sebastian Bach", - "genre": "Baroque", - "famous_works": [ - "Brandenburg Concertos", - "Goldberg Variations", - "St. Matthew Passion", - "Mass in B minor" - ] + "genre": "Baroque" }, { "composer": "Ludwig van Beethoven", - "genre": "Classical/Romantic", - "famous_works": [ - "9 symphonies", - "5 piano concertos", - "Fidelio", - "Moonlight Sonata" - ] + "genre": "Classical/Romantic" }, { "composer": "Wolfgang Amadeus Mozart", - "genre": "Classical", - "famous_works": [ - "The Magic Flute", - "Don Giovanni", - "Requiem", - "Piano Concerto No. 21" - ] + "genre": "Classical" } ] @@ -74,14 +50,19 @@ You can also change the text you are reading here by updating the *Instructions* composers composers - - + + + + {% for c in composers %} +# {{c.composer}} +## {{c.genre }} +{% endfor %} + Flow_1y9syi8 Flow_1uwondc - - + @@ -98,9 +79,8 @@ You can also change the text you are reading here by updating the *Instructions* - + -