mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-24 00:15:17 -06:00
Add choices for CSV-semicolon and TSV
This commit is contained in:
parent
8668e5eded
commit
15c36514e6
@ -221,12 +221,16 @@ class ImportMethodChoices(ChoiceSet):
|
||||
class ImportFormatChoices(ChoiceSet):
|
||||
AUTO = 'auto'
|
||||
CSV = 'csv'
|
||||
CSV_SEMICOLON = "csv-semicolon"
|
||||
TSV = "tsv"
|
||||
JSON = 'json'
|
||||
YAML = 'yaml'
|
||||
|
||||
CHOICES = [
|
||||
(AUTO, _('Auto-detect')),
|
||||
(CSV, 'CSV'),
|
||||
(CSV_SEMICOLON, 'CSV with semicolon seperators'),
|
||||
(TSV, 'TSV'),
|
||||
(JSON, 'JSON'),
|
||||
(YAML, 'YAML'),
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user