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.

enter image description here

enter image description here

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

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

python - Error: Unresolved reference 'selenium' What is the reason? -

php - Need to store a large amount of data in session with CI 3 but on storing large data in session it is itself destorying automatically -