|
I have a module with several custom models defined. I would like a basic CRUD interface for many of them and the built in django admin site would be perfect. I think the stock django admin is mapped to '/nimda/', and i can see it at that address, however it includes the auth and sites apps. It doesn't include my models or any models from the default forum. This true even if I create an admin.py file and do the usual:
I understand that the forum models probably shouldn't be edited directly; i'm only interested in registering my own models. |