如何在django表单中包含telugu语言

时间:2017-11-20 02:56:12

标签: django django-templates

型号:

class Application(models.Model):
    full_name = models.CharField(max_length=40)
    father_or_husband_name = models.CharField(max_length=20)
    nominee_name = models.CharField(max_length=20)
    date_of_birth = models.DateField()
    job = models.CharField(max_length=20)
    address = models.CharField(max_length=20)
    mobile_no = models.CharField(max_length=10)

表单:

class ApplicationForm(forms.ModelForm):

    class Meta:
        model = Application
        fields = ('full_name', 'father_or_husband_name', 'nominee_name', 'date_of_birth',
                  'job', 'address', 'mobile_no')

在我的模板中,字段显示为:

全名: 父亲或丈夫姓名: 被提名人姓名: 出生日期: 工作: 地址: 手机号:

我希望这些字段用我的母语泰卢固语。

1 个答案:

答案 0 :(得分:-2)

像这样添加verbose_name:

class Application(models.Model):
    full_name = models.CharField(max_length=40, verbose_name="Full Name")

你也可以看到 https://docs.djangoproject.com/en/1.11/ref/models/options/