我是 Django 的新手。基本上我正在寻找的是 - 我希望用户单击链接并登录到管理站点。参数可以在 URL 本身中传递吗?请帮忙。
问问题
323 次
2 回答
1
你可以在你的网站上写下你自己的观点,这将:
- 从您的 URL 获取凭据
- 使用django.contrib.auth中的身份验证和登录功能对用户进行身份验证(请参阅https://docs.djangoproject.com/en/dev/topics/auth/default/#auth-web-requests)
- 然后使用 django重定向功能将您的用户重定向到管理员 URL(请参阅https://docs.djangoproject.com/en/dev/topics/http/shortcuts/#redirect)
于 2013-03-08T13:37:00.197 回答
0
使用 django 注册您的管理面板。 https://docs.djangoproject.com/en/1.3/intro/tutorial02/#activate-the-admin-site
改变你的urls.py
喜欢
from django.conf.urls.defaults import patterns, include, url
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
# Examples:
# url(r'^$', 'mysite.views.home', name='home'),
# url(r'^mysite/', include('mysite.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)),
)
将href设为<a href = "www.yoursitename.com/admin/">Click</a>
你完成了
于 2013-03-08T13:36:37.963 回答