gpt4 book ai didi

python - django: grappelli: 路由失败

转载 作者:太空宇宙 更新时间:2023-11-04 10:56:23 26 4
gpt4 key购买 nike

  1. 我已经通过 pip install 安装了 grappelli(并随后对其进行了更新,这是肯定的)。

  2. 我把它放在 INSTALLED_APPS 中的 django.contrib.admin 之前:

    INSTALLED_APPS = (
    ...
    'grappelli',
    'django.contrib.admin',
  3. 我的 urls.py 如下所示:

    url(r'^grappelli/', include('grappelli.urls')),
    url(r'^admin/', include(admin.site.urls)),
  4. 仍然出现错误:

    Using the URLconf defined in _myWebsite.urls, Django tried these URL patterns, in this order:
    ^grappelli/ ^lookup/related/$ [name='grp_related_lookup']
    ^grappelli/ ^lookup/m2m/$ [name='grp_m2m_lookup']
    ^grappelli/ ^lookup/autocomplete/$ [name='grp_autocomplete_lookup']
    ^admin/
    ^categories/$
    The current URL, grappelli/, didn't match any of these.

我做错了什么?

最佳答案

也许你应该尝试重写你的 url 模式以匹配它们在默认 urls.py 中的方式,例如:

urlpatterns = patterns('', #this first entry is very important
url(r'^grappelli/', include('grappelli.urls')),
url(r'^admin/', include(admin.site.urls)))

我知道如果您使用具有第一个空字符串函数参数的 patterns 函数非常重要...也许您错过了它。

关于python - django: grappelli: 路由失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9501623/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com