From 7fe0962d7e918a5ffcd93c532927953ec1e65d36 Mon Sep 17 00:00:00 2001 From: maltaesousa Date: Tue, 7 Apr 2020 09:34:51 +0200 Subject: [PATCH] typo --- back/api/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/api/models.py b/back/api/models.py index 7f58f356..90cb2557 100644 --- a/back/api/models.py +++ b/back/api/models.py @@ -49,7 +49,7 @@ class Identity(AbstractUser): city = models.CharField(_('city'), max_length=50, blank=True) country = models.CharField(_('country'), max_length=50, blank=True) company_name = models.CharField(_('company_name'), max_length=50, blank=True) - phone = models.CharField(_('name'), max_length=50, blank=True) + phone = models.CharField(_('phone'), max_length=50, blank=True) sap_id = models.BigIntegerField(_('sap_id'), blank=True, null=True) contract_accepted = models.DateField(_('contract_accepted'), blank=True, null=True)