aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2021-05-15 15:10:51 +0300
committerFilipp Lepalaan <filipp@mac.com>2021-05-15 15:10:51 +0300
commit2d5770393e55d3ba055fb10db54afe37bd28b590 (patch)
tree7405f16e15f9cc368dd1c8c5f86573246160af87
parent5995558bf34f43b7dc5e99dee25e449b4c691988 (diff)
downloadServo-2d5770393e55d3ba055fb10db54afe37bd28b590.tar.gz
Servo-2d5770393e55d3ba055fb10db54afe37bd28b590.tar.bz2
Servo-2d5770393e55d3ba055fb10db54afe37bd28b590.zip
Explain customer field
-rw-r--r--servo/models/account.py3
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(