How to access data from previous form in django-formtools wizard?
I'm trying to use information selected in a previous step of a wizard in a subsequent step. I assume this is a pretty common use case but my googling has ben of limited help, so I think I'm not approaching it in the django way. I only find a few questions from 10 years ago.
I have distinct templates defined for each step
It seems like there must be a very basic way to access the previous steps data but I'm struggling (new to Django in general)
This is the only documentation I can find but it seems to be just be describing how to use the context dictionary to determine to skip a step or not.
There must be some 1 IQ simple way to get a value input in step 1 and display it in step 2.. Please help me!