Import and export in Django Administration

I am trying to create import and export from Django admin where I can import and export XML files. How do we add import and export in Django Admin? Anyone Please help me?

It’s going to be a lot less work to create your own views to do this than trying to integrate something into the admin.

From the docs:

If you need to provide a more process-centric interface that abstracts away the implementation details of database tables and fields, then it’s probably time to write your own views.