aboutsummaryrefslogtreecommitdiffstats
path: root/servo/models/account.py
diff options
context:
space:
mode:
authorFilipp Lepalaan <filipp@mac.com>2015-09-30 02:08:19 +0300
committerFilipp Lepalaan <filipp@mac.com>2015-09-30 02:08:19 +0300
commit4194e8ee556f3109057fab0afb7894927b52713e (patch)
tree996cb5de38706b07bb24f519d868b29da54c0b67 /servo/models/account.py
parent03326a06e12de1af575c8e4b2de7e3824f6eaace (diff)
downloadServo-4194e8ee556f3109057fab0afb7894927b52713e.tar.gz
Servo-4194e8ee556f3109057fab0afb7894927b52713e.tar.bz2
Servo-4194e8ee556f3109057fab0afb7894927b52713e.zip
Cleanup
Diffstat (limited to 'servo/models/account.py')
-rw-r--r--servo/models/account.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/servo/models/account.py b/servo/models/account.py
index 14535b2..46eb674 100644
--- a/servo/models/account.py
+++ b/servo/models/account.py
@@ -73,7 +73,7 @@ class User(AbstractUser):
max_length=32,
choices=LOCALES,
default=LOCALES[0][0],
- verbose_name=_('language'),
+ verbose_name=_('Language'),
help_text=_("Select which language you want to use Servo in.")
)
@@ -108,7 +108,7 @@ class User(AbstractUser):
)
notify_by_email = models.BooleanField(
default=False,
- verbose_name=_('email notifications'),
+ verbose_name=_('Email notifications'),
help_text=_("Event notifications will also be emailed to you.")
)
autoprint = models.BooleanField(
@@ -120,7 +120,7 @@ class User(AbstractUser):
blank=True,
default='',
max_length=16,
- verbose_name=_("tech ID")
+ verbose_name=_("Tech ID")
)
gsx_userid = models.CharField(
blank=True,
@@ -141,7 +141,7 @@ class User(AbstractUser):
null=True,
blank=True,
upload_to="avatars",
- verbose_name=_('photo'),
+ verbose_name=_('Photo'),
help_text=_("Maximum avatar size is 1MB")
)
@@ -168,6 +168,10 @@ class User(AbstractUser):
@classmethod
def refresh_nomail(cls):
+ """
+ Refreshes the list of emails that shouldn't
+ be notified by email
+ """
users = cls.active.filter(notify_by_email=False)
nomail = [u.email for u in users]
cache.set('nomail', nomail)