Filling a website page with info about ongoing proccess with Django and Selenium

Hey I'm currently building a website that uses Django as front and back and selenium automations with python. I'm unsure how to implement this idea, for example user is creating an object and then he's redirected into another blank page and I want this blank page to fill with paragraph about each of the processes Selenium does (where it succeeds and where it fails for a re run)

I thought about using javascript to load dynamic late into the dom as selenium runs its functions and the results outputted into the blank page for the user to see, is there any other way to do so with django?

Back to Top