diff --git a/tubearchivist/home/src/frontend/forms.py b/tubearchivist/home/src/frontend/forms.py index 900df878..4459f9b5 100644 --- a/tubearchivist/home/src/frontend/forms.py +++ b/tubearchivist/home/src/frontend/forms.py @@ -159,12 +159,14 @@ class MultiSearchForm(forms.Form): class AddToQueueForm(forms.Form): """text area form to add to downloads""" + HELP_TEXT = "Enter at least one video, channel or playlist id/URL here..." + vid_url = forms.CharField( label=False, widget=forms.Textarea( attrs={ "rows": 4, - "placeholder": "Enter Video Urls or IDs here...", + "placeholder": HELP_TEXT, } ), ) diff --git a/tubearchivist/home/templates/home/settings.html b/tubearchivist/home/templates/home/settings.html index 6ec29e19..6477013d 100644 --- a/tubearchivist/home/templates/home/settings.html +++ b/tubearchivist/home/templates/home/settings.html @@ -34,8 +34,8 @@
Current page size: {{ config.subscriptions.channel_size }}
- Recent videos for channels and playlist to check when running Rescan subscriptions, max recommended 50.YouTube page size: {{ config.subscriptions.channel_size }}
+ Videos to scan to find new items for the Rescan subscriptions task, max recommended 50.