File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ class AbstractOrganizationUser(
176176 Abstract OrganizationUser model
177177 """
178178
179- is_admin = models .BooleanField (default = False )
179+ is_admin = models .BooleanField (verbose_name = _ ( 'is admin' ), default = False )
180180
181181 class Meta (AbstractBaseOrganizationUser .Meta ):
182182 abstract = True
Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ class AbstractBaseOrganization(models.Model):
209209 the owner user.
210210 """
211211
212- name = models .CharField (max_length = 200 , help_text = _ ("The name of the organization" ))
213- is_active = models .BooleanField (default = True )
212+ name = models .CharField (verbose_name = _ ( 'name' ), max_length = 200 , help_text = _ ("The name of the organization" ))
213+ is_active = models .BooleanField (verbose_name = _ ( 'is active' ), default = True )
214214
215215 objects = OrgManager ()
216216 active = ActiveOrgManager ()
@@ -322,6 +322,7 @@ class AbstractBaseInvitation(models.Model):
322322
323323 guid = models .UUIDField (editable = False )
324324 invitee_identifier = models .CharField (
325+ verbose_name = _ ('invitee identifier' ),
325326 max_length = 1000 ,
326327 help_text = _ (
327328 "The contact identifier for the invitee, email, phone number,"
You can’t perform that action at this time.
0 commit comments