aboutsummaryrefslogtreecommitdiffstats
path: root/servo/models
diff options
context:
space:
mode:
Diffstat (limited to 'servo/models')
-rw-r--r--servo/models/note.py5
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)