django_builder icon indicating copy to clipboard operation
django_builder copied to clipboard

unicode issue

Open hakunamta00700 opened this issue 9 years ago • 2 comments

when i upload ".model.py" which use unicode text(korean) as verbose_name in field, text is broken in generating code via django_builder.

hakunamta00700 avatar Oct 06 '16 01:10 hakunamta00700

HI, Thanks for the feedback.

Do you have a small example models.py you could share?

Thanks

mmcardle avatar Oct 07 '16 08:10 mmcardle

@mmcardle Hello, I have the same problem in Chinese. The following is an example of Chinese

class Card(models.Model):
    name = models.CharField(max_length=20, verbose_name='姓名')
    email = models.CharField(max_length=50, verbose_name='信箱')
    tel = models.CharField(max_length=20, verbose_name='電話')

fcu-d0449763 avatar Jul 01 '19 11:07 fcu-d0449763