Add clarifying help text to refresh rate field.

This commit is contained in:
Christopher Charbonneau Wells 2018-03-27 19:41:23 -07:00
parent a524259507
commit 096092b91d
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,8 @@ class Settings(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE)
dashboard_refresh_rate = models.DurationField(
verbose_name='Refresh rate',
help_text='This setting will only be used when a browser does not '
'support refresh on focus.',
blank=True,
null=True,
default=timedelta(minutes=1),