From 2d5770393e55d3ba055fb10db54afe37bd28b590 Mon Sep 17 00:00:00 2001 From: Filipp Lepalaan Date: Sat, 15 May 2021 15:10:51 +0300 Subject: Explain customer field --- servo/models/account.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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( -- cgit v1.2.3