2011/2/22 Alexander Bolotnov <abolot...@gmail.com>

> I created a simple model:
>
> class Menu(models.Model):
>     name = models.CharField(null=False,
> blank=False,unique=True,max_length=50)
>     url = models.CharField(null=False, blank=False,
> unique=True,max_length=100)
>     sortOrder = models.IntegerField(null=False, blank=False, default=0)
>     def __unicode__(self):
>         return 'name: {0}, url: {1}'.format(self.name, self.url)
>
> and hooked it to admin (all running on windows 7, django dev server)
>
> now when I add a new item via admin and the name is in Russian (Like
> "коллекция картинок") it throws the following exception. How do I fix this?
>

Please direct questions about how to use Django to the django-users mailing
list.  This list is for development of Django itself.

Thanks,
Ian

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

Reply via email to