简体   繁体   中英

django 1.3 admin site problem itself

I have got a really strange issue with the admin site. When I enter to the site the address is:http://127.0.0.1:8000/admin/ and I see the front-admin-site, hmm looks fine. But when I click to any "+Add button" or any link on the site I see still the admin site:p but with address fe http://127.0.0.1:8000/admin/category/category/add/ . I can play as many times as I want, I see all the time the front-admin-site with a list of my models but with address fe http://127.0.0.1:8000/admin/category/category/add/category/category/add/category/category/add/category/category/add/ :pp

What is wrong? Best regards,

nykon

It's a problem with your urls.py configuration, the way to have admin in there is:

from django.contrib import admin
admin.autodiscover()

...

    url(r'^admin/', include(admin.site.urls)),

99% of the time that's what that is.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM