tengo este widget
Código Python:
Ver originalfrom django.utils.datastructures import MultiValueDict
class Test(Widget):
input_type = 'hidden'
is_hidden = True
def __init__(self, attrs=None):
if attrs is not None:
self.input_type = attrs.pop('type', self.input_type)
super(Test, self).__init__(attrs)
def value_from_datadict(self, data, files, name):
return data.gelist(data,None)
pero cuando trato de acceder via cleanned data no anda porque retorna una lista pero no se que pasa me dice da error
KeyError test