From bd4710ebdcd6306da1d43374e363ac2713d708cb Mon Sep 17 00:00:00 2001 From: simon Date: Sat, 13 Aug 2022 15:43:23 +0700 Subject: [PATCH] improved wording for download form, subscription size, #300 --- tubearchivist/home/src/frontend/forms.py | 4 +++- tubearchivist/home/templates/home/settings.html | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) 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 @@

Subscriptions

-

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.
{{ app_form.subscriptions_channel_size }}