django_builder
django_builder copied to clipboard
unicode issue
when i upload ".model.py" which use unicode text(korean) as verbose_name in field, text is broken in generating code via django_builder.
HI, Thanks for the feedback.
Do you have a small example models.py you could share?
Thanks
@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='電話')