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
The `admin.py` for your app needs to use mongoadmin instead of django's admin:
33
-
34
-
from mongoadmin import site, DocumentAdmin
35
-
36
-
from app.models import AppDocument
37
-
38
-
class AppDocumentAdmin(DocumentAdmin):
39
-
pass
40
-
site.register(AppDocument, AppDocumentAdmin)
41
-
42
-
Now the document should appear as usual in django's admin.
43
12
44
13
## What works and doesn't work
45
14
46
-
django-mongoadmin currently only supports the most basic things and even they are not really tested.
15
+
django-mongodbforms currently only supports the most basic things and even they are not really tested.
47
16
48
17
Changelists only support basic listings you probably won't be able to use fieldlists and every other feature that django supports for changelists (search, etc.).
0 commit comments