请注意,我是 django 的新手和 python 的半新手。
我的管理页面 ( localhost:8000/admin
) 似乎不见了 - 它恢复到欢迎页面 - 它工作页面而不是管理页面。
这是urls.py
主页:
from django.conf.urls import patterns, include, url
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
# Examples:
# url(r'^$', '{{ project_name }}.views.home', name='home'),
# url(r'^{{ project_name }}/', include('{{ project_name }}.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)),
)
这是应用程序设置
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',
'urm',
'south',
)
这是管理员 (urm)
from django.contrib import admin
from urm.models import *
class urm(admin.ModelAdmin):
fields =['blogger']
admin.site.register(urm)
数据库已同步,并且 urm 已正确迁移。
这让我无法理解如何建立自己的观点——你们都知道我完全看不到的问题是什么吗?我正在使用 south 和 postgres - 但我基本上是按照教程并迁移到我想同步的地方(除非我另有想法)
谢谢!