Issue 30: Newforms-admin needs admin.py
Status:  Duplicate
Owner: ----
Closed:  Jul 2008
Reported by aez...@gmail.com, Jul 23, 2008
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
This is already fixed, in latest SVN.
Status: Duplicate