diff --git a/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex b/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex index 0786aa7..09c8de2 100644 --- a/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex +++ b/lib/pinchflat_web/controllers/media_profiles/media_profile_html/media_profile_form.html.heex @@ -2,10 +2,17 @@ <.error :if={@changeset.action}> Oops, something went wrong! Please check the errors below. +

General Options

- <.input field={f[:name]} type="text" label="Name" placeholder="New Profile" help="(required)" /> + <.input + field={f[:name]} + type="text" + label="Name" + placeholder="New Profile" + help="Something descriptive. Does not impact indexing or downloading (required)" + /> <.input field={f[:output_path_template]} diff --git a/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex b/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex index 28c5747..88bbba7 100644 --- a/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex +++ b/lib/pinchflat_web/controllers/sources/source_html/source_form.html.heex @@ -3,7 +3,12 @@ Oops, something went wrong! Please check the errors below. - <.input field={f[:friendly_name]} type="text" label="Custom Name" /> + <.input + field={f[:friendly_name]} + type="text" + label="Custom Name" + help="Something descriptive. Does not impact indexing or downloading" + /> <.input field={f[:original_url]} type="text" label="Source URL" help="URL of a channel or playlist (required)" />