I have no need to the celery modules in my Django admin. Is there a way I could remove it?
相关问题
- how to define constructor for Python's new Nam
- streaming md5sum of contents of a large remote tar
- How to get the background from multiple images by
- Django __str__ returned non-string (type NoneType)
- Evil ctypes hack in python
You can simply unregister celerys models like admin.site.unregister(CeleryModelIdoNotWantInAdmin)
To be more specific, in
admin.py
of any app insideINSTALLED_APPS
after'djcelery'