I don't know if it could help, but anyway you should:

1) add the following line at the beggining of models.py

# -*- coding: utf8 -*-

2) change the order of stuff in models, at first fields: CharField
etc, then classes (Admin, Meta) and methods at the end (__unicode__
etc).
3) add after 'coding', at the beggining:

from django.utils.encoding import smart_unicode

3) on model Ticket:

    def __unicode__(self):
        return self.ticket_numb

change it to:

    def __unicode__(self):
        return smart_unicode(self.ticket_numb)

I suppose that's the reason. You are returning Integer (ticket_numb is
integer) in __unicode__ when django expects unicode string.

Hope it will help.
--~--~---------~--~----~------------~-------~--~----~
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