2013-10-12 52 views

回答

2

您可以使用label

is_active = forms.BooleanField(label='Active?') 
+0

和/或help_text =「選中是否處於活動狀態,取消選中處於非活動狀態。」 – allcaps

4

在模型中,你可以寫

from django.utils.translation import ugettext_lazy as _ 
class MyModel(models.Model): 
    INACTIVE = 0 
    ACTIVE = 1 
    STATUS = (
     (INACTIVE, _('Inactive')), 
     (ACTIVE, _('Active')), 
    ) 

    active = models.IntegerField(default=0, choices=STATUS) 

而不是IntegerField,你可以使用BooleanField。然後INACTIVE/ACTIVE爲True/False

相關問題