File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 22
33setup (
44 name = "django-simple-import" ,
5- version = "1.20 " ,
5+ version = "1.21 " ,
66 author = "David Burke" ,
77 author_email = "david@burkesoftware.com" ,
88 description = ("A Django import tool easy enough your users could use it" ),
Original file line number Diff line number Diff line change @@ -9,16 +9,18 @@ class Meta:
99 model = ImportLog
1010 fields = ('name' , 'import_file' , 'import_type' )
1111 model = forms .ModelChoiceField (ContentType .objects .all ())
12-
13-
12+
13+
1414class MatchForm (forms .ModelForm ):
1515 class Meta :
1616 model = ColumnMatch
1717 exclude = ['header_position' ]
1818
19+
1920class MatchRelationForm (forms .ModelForm ):
2021 class Meta :
2122 model = RelationalMatch
2223 widgets = {
2324 'related_field_name' : forms .Select (choices = (('' , '---------' ),))
2425 }
26+ fields = "__all__"
You can’t perform that action at this time.
0 commit comments