diff options
author | Filipp Lepalaan <filipp@mac.com> | 2017-04-24 22:26:17 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2017-04-24 22:26:17 +0300 |
commit | 85e92ff2ee4ca30e0144790a1d95b8023595bf2f (patch) | |
tree | ff38ef1fe1957e00732ab43f891b7915a7a97274 /servo/models | |
parent | 5934831e5921b78651418a589da3c67ed320a309 (diff) | |
download | Servo-85e92ff2ee4ca30e0144790a1d95b8023595bf2f.tar.gz Servo-85e92ff2ee4ca30e0144790a1d95b8023595bf2f.tar.bz2 Servo-85e92ff2ee4ca30e0144790a1d95b8023595bf2f.zip |
Cleanup
Diffstat (limited to 'servo/models')
-rw-r--r-- | servo/models/note.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/servo/models/note.py b/servo/models/note.py index 8b2943f..3f48282 100644 --- a/servo/models/note.py +++ b/servo/models/note.py @@ -112,7 +112,8 @@ class Note(MPTTModel): is_reported = models.BooleanField( default=False, - verbose_name=_("Report") + verbose_name=_("Report"), + help_text=_('Show this note on the confirmation printout') ) is_read = models.BooleanField( default=True, @@ -178,7 +179,7 @@ class Note(MPTTModel): def zip_attachments(self): pass - + def get_default_sender(self): return Configuration.get_default_sender(self.created_by) |