diff --git a/tubearchivist/home/forms.py b/tubearchivist/home/forms.py index 5661025..86f608e 100644 --- a/tubearchivist/home/forms.py +++ b/tubearchivist/home/forms.py @@ -62,6 +62,16 @@ class ApplicationSettingsForm(forms.Form): ) +class SchedulerSettingsForm(forms.Form): + """handle scheduler settings""" + + update_subscribed = forms.CharField(required=False) + download_pending = forms.CharField(required=False) + check_reindex = forms.CharField(required=False) + thumbnail_check = forms.CharField(required=False) + run_backup = forms.CharField(required=False) + + class VideoSearchForm(forms.Form): """search videos form""" diff --git a/tubearchivist/home/templates/home/settings.html b/tubearchivist/home/templates/home/settings.html index 31be996..0603bdb 100644 --- a/tubearchivist/home/templates/home/settings.html +++ b/tubearchivist/home/templates/home/settings.html @@ -101,6 +101,40 @@ +
+