You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, could you specify what do you mean by dj_admin.ModelAdmin in below readme snippet? What is dj_admin? It's not installed when installing django_neomodel package nor Django. How can I get it? Please help as I honestly don't know.
from django_neomodel import admin as neo_admin
from .models import Book
class BookAdmin(dj_admin.ModelAdmin):
list_display = ("title", "created")
neo_admin.register(Book, BookAdmin)
The text was updated successfully, but these errors were encountered:
Hello, could you specify what do you mean by
dj_admin.ModelAdmin
in below readme snippet? What is dj_admin? It's not installed when installing django_neomodel package nor Django. How can I get it? Please help as I honestly don't know.from django_neomodel import admin as neo_admin
from .models import Book
class BookAdmin(dj_admin.ModelAdmin):
list_display = ("title", "created")
neo_admin.register(Book, BookAdmin)
The text was updated successfully, but these errors were encountered: