On 6/27/07, leif strickland <[EMAIL PROTECTED]> wrote:
...
>                         zip_code_id =
> Postal_Code.objects.get(postal_code=value).id

Is Postal_Code.postal_code a string or numeric?
...
>                 try:
>                         zip_code = Postal_Code.objects.get(id =
> value).postal_code
>                 except:
>                         zip_code = value

Again, you may want to str() .postal_code if it's numeric.

Are you registering your custom ModelAdmin with django.contrib.admin.site?

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to