Commit d167c960ba7597df6734f704199187b2a78f062a
1 parent
2cbae9f4
Exists in
master
and in
5 other branches
Modified verbose name [Issue:#398]
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
users/models.py
... | ... | @@ -30,7 +30,7 @@ class User(AbstractBaseUser, PermissionsMixin): |
30 | 30 | institution = models.CharField(_('Institution'), max_length = 50, blank=True, null=True) |
31 | 31 | curriculum = models.FileField(verbose_name = _('Curriculum'), upload_to='users/curriculum/', null=True, blank=True) |
32 | 32 | date_created = models.DateTimeField(_('Create Date'), auto_now_add = True) |
33 | - is_staff = models.BooleanField(_('Administrador'), default = False) | |
33 | + is_staff = models.BooleanField(_('Administrator'), default = False) | |
34 | 34 | is_active = models.BooleanField(_('Active'), default = True) |
35 | 35 | |
36 | 36 | USERNAME_FIELD = 'username' | ... | ... |