I am currently working with Django Celery
and I have integrated Django celery backend
for managing my background tasks. I want to remove Task Results
tab from CELERY RESULTS
section but could not find any help online.
Image for reference:
Any help would be highly appreciated :)
UPDATE: If you get
The model TaskResult is not registered
error import from django_celery_results.admin
.
from django_celery_results.admin import TaskResult, GroupResult
admin.site.unregister(TaskResult)
admin.site.unregister(GroupResult)