I understand, and that's what I'm really doing at the moment, but I was
just curious if there's a better way to retrieve these POST values than
just:

options = []
for name, value in request.POST.items():
    if(name.startswith("option")):
         options.append(value)

Reply via email to