On Sat, Jul 4, 2009 at 12:39 PM, Carlos Eduardo Sotelo Pinto <
csot...@aqpglug.org.pe> wrote:

>
> Hi people
>
> I have this form , as my subject says, it is giving me "to many values
> to unpack"
>

FYI, providing the traceback, or at least identifying the line of code that
causes the error, would help people help you. Having to first figure out
what line of code may be triggering the error is something not everyone who
might explain the error is going to want to do.  Taking a quick scan of the
code I see one problem, noted below.  (Not sure it is the cause of your
error message, and I stopped looking after finding one problem, so there may
be other issues.)


>
> class ProductModelForm(forms.ModelForm):
>    product_model = forms.ModelChoiceField(ProductModel.objects.all(),
>  None, u'Modelo')
>    class Meta:
>        model = ProductModel
>        exclude = ['maker', 'product_type']
>    def __init__(self, maker_filter,  *args, **kwargs):
>        self.base_fields['product_model'].query =
> ProductModel.objects.all().filter('maker_id = ',maker_filter)


That filter condition looks wrong.  Perhaps you mean
.filter(maker_id=maker_filter)?

Karen

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to