On Sun, Mar 22, 2009 at 3:00 PM, grimmus <[email protected]> wrote:
>
> Hi,
>
> I have a class like so
>
> class ContactEnquiry(models.Model):
> name = models.CharField(max_length=100)
> subject = models.CharField(max_length=100)
> email = models.EmailField()
> message = models.CharField(max_length=100)
> enquiry_date = models.DateTimeField('enquiry date')
> def __unicode__(self):
> return self.name
>
> when i make an instance of this class it throws the error :
>
> invalid literal for int() with base 10: 'name value'
>
> when i pass an int as the first parameter it works fine but i thought
> an autonumber would be passed as the id value ?
>
> Thanks for any help
>
> >
>
How are you creating an instance of the model, can you paste the code you
are running and the full traceback.
Alex
--
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
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
-~----------~----~----~----~------~----~------~--~---