python - Django using more than 1 package for admin site -
i using 2 django packages: admin sortable (for changing order of models) , django import export (for importing csv directly models).
the problem if add 2 packages model admin e.g.
class categoryadmin(sortableadmin, importexportmodeladmin):
they override each other.
the buttons either show admin sortable or django import export. there anyway can integrate both of them together? alternatively, there package can swap out can achieve same functions (1. change order of models , 2. import csv directly models)
Comments
Post a Comment