模型不会出现在管理页面中

时间:2012-11-11 05:01:09

标签: django django-admin

我多次看过这个问题,但没有人回答我的问题 我添加了一个应用程序及其模型,但在管理门户中看不到它们 我可以从shell访问该模型。

settings.py

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    # Uncomment the next line to enable the admin:
    'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
    'myApp',
)

urls.py

from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Examples:
    # url(r'^$', 'RCOSPortal.views.home', name='home'),
    # url(r'^RCOSPortal/', include('RCOSPortal.foo.urls')),

    # Uncomment the admin/doc line below to enable admin documentation:
    # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
)

admin.py

from django.contrib import admin
from myApp.models import Owner

admin.site.register(Owner)

1 个答案:

答案 0 :(得分:1)

  • 确保您已运行'syncdb'命令。
  • 创建一个 OwnerAdmin并尝试注册它。
  • 如果不工作,请上传您的测试 github中的项目(包括所有文件),以便我们为您提供帮助。