Sync channels in reverse order from when they were last synced

This commit is contained in:
Jacob Mansfield [root@Helix]
2019-11-22 16:58:36 +00:00
parent 794b9bd42d
commit 7bcfda70a2
3 changed files with 10 additions and 4 deletions

View File

@ -335,7 +335,7 @@ class UpdateSubscriptionForm(forms.ModelForm):
class Meta:
model = Subscription
fields = ['name', 'parent_folder', 'auto_download',
'download_limit', 'download_order', "automatically_delete_watched"]
'download_limit', 'download_order', "automatically_delete_watched", 'last_synchronised']
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
@ -349,7 +349,8 @@ class UpdateSubscriptionForm(forms.ModelForm):
'auto_download',
'download_limit',
'download_order',
'automatically_delete_watched'
'automatically_delete_watched',
Field('last_synchronised', readonly=True)
)