| Issue 30: | Newforms-admin needs admin.py | |
| 1 person starred this issue and may be notified of changes. | Back to list |
If you are using the latest rev. of Django with Newforms-admin, you will need an admin.py file in the forum/ dir. The simplest one would look like this: from django.contrib import admin from forum.models import Forum, Thread, Post admin.site.register(Forum) admin.site.register(Thread) admin.site.register(Post) However, I suspect there may be a better way to make this more portable. I'm glad to help make that happen once I learn a little more about newforms-admin.
Jul 27, 2008
Project Member
#1
rwpoul...@gmail.com
Status:
Duplicate
|