mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-24 08:25:17 -06:00
Fix help text to reflect support for TSV imports.
This commit is contained in:
parent
c554443a6a
commit
369fe57ba0
@ -21,7 +21,7 @@ class BulkImportForm(BootstrapMixin, SyncedDataMixin, forms.Form):
|
|||||||
data = forms.CharField(
|
data = forms.CharField(
|
||||||
required=False,
|
required=False,
|
||||||
widget=forms.Textarea(attrs={'class': 'font-monospace'}),
|
widget=forms.Textarea(attrs={'class': 'font-monospace'}),
|
||||||
help_text=_("Enter object data in CSV, JSON or YAML format."),
|
help_text=_("Enter object data in CSV, TSV, JSON or YAML format."),
|
||||||
# Do not let Django strip data, because this can mess with TSV files.
|
# Do not let Django strip data, because this can mess with TSV files.
|
||||||
# When the last column of the last row is empty, the TSV will end with
|
# When the last column of the last row is empty, the TSV will end with
|
||||||
# a '\t' and that should not be stripped out!
|
# a '\t' and that should not be stripped out!
|
||||||
|
Loading…
Reference in New Issue
Block a user