Skip to content Skip to sidebar Skip to footer

Only Last Label Input Value Being Returned In Django

I am pretty new in Django and I guess there is something I am overlooking. I have a form that I am populating dynamically as shown below

Solution 1:

You don't need to clean data from a radio button since it is populated directly, try something like selected_choice = request.POST['choice']) , hope this helps.


Post a Comment for "Only Last Label Input Value Being Returned In Django"