1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Added dynamic examples for CSV form fields

This commit is contained in:
Jeremy Stretch
2017-06-06 17:27:26 -04:00
parent 1ddd7415cb
commit d122f9f700
6 changed files with 45 additions and 9 deletions

View File

@ -235,7 +235,7 @@ class CSVDataField(forms.CharField):
if not self.initial:
self.initial = ','.join(required_fields) + '\n'
if not self.help_text:
self.help_text = 'Enter the list of column headers followed by one line per record to be imported. Use ' \
self.help_text = 'Enter the list of column headers followed by one line per record to be imported, using ' \
'commas to separate values. Multi-line data and values containing commas may be wrapped ' \
'in double quotes.'