diff options
author | Filipp Lepalaan <filipp@mac.com> | 2021-05-15 15:10:51 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2021-05-15 15:10:51 +0300 |
commit | 2d5770393e55d3ba055fb10db54afe37bd28b590 (patch) | |
tree | 7405f16e15f9cc368dd1c8c5f86573246160af87 | |
parent | 5995558bf34f43b7dc5e99dee25e449b4c691988 (diff) | |
download | Servo-2d5770393e55d3ba055fb10db54afe37bd28b590.tar.gz Servo-2d5770393e55d3ba055fb10db54afe37bd28b590.tar.bz2 Servo-2d5770393e55d3ba055fb10db54afe37bd28b590.zip |
Explain customer field
-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( |