Hide unused Feedly page setting

This commit is contained in:
Oleg Lavrovsky 2017-09-20 12:18:12 +02:00
parent 77b976dbcf
commit 8113b6d942
1 changed files with 3 additions and 2 deletions

View File

@ -29,10 +29,11 @@ class FeedlySettings(BaseSetting):
(2, '5'),
(3, '10'),
(4, '50'),
), blank=True, null=True,
), blank=True, null=True, editable=False,
help_text='How many pages to fetch?'
)
feedly_stream = models.ManyToManyField(Stream)
feedly_stream = models.ManyToManyField(Stream,
help_text='Which streams to update')
class Meta:
verbose_name = 'Feedly'