Giter Site home page Giter Site logo

Comments (2)

hermanocabral avatar hermanocabral commented on August 29, 2024 1

👍 bro, that's what I had done in the meantime, guess there's no way around it...

Thanks for the help!

from django-advanced-filters.

asfaltboy avatar asfaltboy commented on August 29, 2024

Yes, that is expected, since AFAIK Django only allows one custom template to be declared per ModelAdmin. What I suggest you to do is merge both django-advanced-filter's custom change_list template and django-import-export's custom change_list template into your own custom template and declare it in your ModelAdmin class; or, if you intend to do this in multiple classes, a mixin like this can work:

class CommonAdminMixin(ImportExportMixin, AdminAdvancedFiltersMixin):
    """
    Set a custom ``change_list_template`  to enable both `django-import-export`_ and
    `django-advanced-filters`_ functionality in the ``change_list`` admin view.
    """
    #: template for change_list view
    change_list_template = 'admin/change_list_common.html'

Unfortunately I don't know of any clean way to merge templates, you probably can just copy paste the content of import-export into advanced-filters and save in your template folder.

from django-advanced-filters.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.