xiaoyuanwang
Results
2
comments of
xiaoyuanwang
老师你好 又碰到新问题了,我现在想进admin的页面也是这个首页,url的代码如下: from django.contrib import admin from django.conf.urls import url from .custom_site import custom_site from blog.views import post_list, post_detail from config.views import links urlpatterns = [ url(r'$', post_list), url(r'^category/(?P\d+)/$', post_list),...
我访问127.0.0.1:8000/admin也是跟上图一样的首页,根本没有跳转到后台管理界面