diff options
-rw-r--r-- | servo/models/account.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/servo/models/account.py b/servo/models/account.py index 06f6417..864535c 100644 --- a/servo/models/account.py +++ b/servo/models/account.py @@ -40,7 +40,8 @@ class User(AbstractUser): null=True, blank=True, on_delete=models.SET_NULL, - limit_choices_to={'is_company': True} + limit_choices_to={'is_company': True}, + help_text=_('Tie the user to this customer (company).') ) full_name = models.CharField( |