Skip to content

Commit 6a5fedf

Browse files
committed
Add Package URL placeholder in InputsBaseForm #1383
Signed-off-by: tdruez <[email protected]>
1 parent c2c9bc1 commit 6a5fedf

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

scanpipe/forms.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,16 +64,17 @@ class InputsBaseForm(forms.Form):
6464
label="Download URLs",
6565
required=False,
6666
help_text=(
67-
"Provide one or more URLs to download, one per line. "
68-
"Files are fetched at the beginning of the pipeline run execution."
67+
"Enter one or more download URLs, one per line. "
68+
"Files will be fetched when the pipeline starts."
6969
),
7070
widget=forms.Textarea(
7171
attrs={
7272
"class": "textarea is-dynamic",
73-
"rows": 2,
73+
"rows": 3,
7474
"placeholder": (
7575
"https://domain.com/archive.zip\n"
76-
"docker://docker-reference (e.g.: docker://postgres:13)"
76+
"docker://docker-reference (e.g.: docker://postgres:13)\n"
77+
"pkg://type/name@version"
7778
),
7879
},
7980
),

0 commit comments

Comments
 (0)