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.
Original issue reported on code.google.com by aez...@gmail.com on 24 Jul 2008 at 3:05
Original issue reported on code.google.com by
aez...@gmail.com
on 24 Jul 2008 at 3:05