[Answered ]-How to register a new Model in Django-Oscar Dashboard?

2👍

The Oscar dashboard is not linked to the Django admin.

If you want to manage a model through the Oscar dashboard, you have to create your own views and add them to the dashboard navigation.

0👍

Changing the forked app admin.py worked for me

#catalogue/admin.py
from oscar.apps.catalogue.admin import *  # noqa
from modapps.catalogue.models import Brand

class BrandAdmin(admin.ModelAdmin):
    list_display = [ 'id']


admin.site.register(Brand, BrandAdmin)

Leave a comment