Is the admin in your installed apps in settings.py? http://docs.djangoproject.com/en/1.1/intro/tutorial02/#activate-the-admin-site Add "django.contrib.admin" to your INSTALLED_APPS setting.
-Preston On Nov 11, 5:19 pm, neridaj <[email protected]> wrote: > I'm working on a standalone app and when I try to add it to the admin > index it does not show up using: > > from django.contrib import admin > from blog.models import Category > > admin.site.register(Category) > > Thanks, > > J -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=.

