I have a list of items that looks like this: 'Item 1', 'Item 2', 'Item 3'...
with the list being dynamic in length.
My question is how can I pass this variable to my view?
Edit 1 Just thought I'd clarify what I was attempting:
return HttpResponseRedirect(reverse('newFeatures',
kwargs={'stock_number': stock_number, 'new_features': new_features}))
With new_features
being my dynamic list, and newFeatures
being a view that starts like this:
def add_new_feature(request, stock_number, new_features):
Not sure if this is making sense, but I hope it'll help get me out of the dark