> Thanks for that TIM A LOT glad to help
> But stuck again > > AttributeError at /registration/ > 'FormFieldWrapper' object has no attribute 'month' Well, somewhere in your code, you're asking for the "month" attribute of an object. And that object doesn't have a "month" property, so it raises the AttributeError exception. This might stem from assigning a non-date value to a DateField value, and then trying to read it back. Or it might stem from assigning None to such an attribute (though IIRC, that raises something like "'NoneType' object has no attribute 'month'". Or you might be passing something that's a non-date to a "date" filter. -tkc --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---