我有一个 django 测试,在亚马逊 ec2 实例上,我看到“它工作了!” 页,
我已经评论了访问管理员的必要行,
但我看不到管理页面,
我必须正确配置 urls.py 才能在我的应用程序中显示视图,
from django.conf.urls.defaults 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'^$', 'micopiloto.views.home', name='home'),
url(r'^$', 'portfolio.views.view', name='home'),
# url(r'^micopiloto/', include('micopiloto.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)),
)
我的应用程序的视图位于:/home/ubuntu/djangoProj/micopiloto/portfolio/views.py
但我有一个空的views.py [因为我刚刚创建了应用程序]
那么如何设置 urls.py 以连接我的应用程序,
我需要一些基本代码来查看我的应用程序的views.py吗?
以及如何加载管理页面?
谢谢!