url分发出错
来源:7-7 modelform提交我要学习咨询1
NeverGiveUp_0002
2017-06-03
将url分发出错,在整个工程的urls.py添加如下代码:
url(r'^org/', include('organization.urls', namespace='org')),
在organization/urls下面添加如下url配置
url(r'^list/$', OrgView.as_view(), name="org_list"),
在base.html中 添加授课机构的链接:
<li class="active"><a href="{% url 'org:org_list' %}"></a>课程机构</li>
但是在http://127.0.0.1:8000/org/list/ 页面点击授课机构的时候报如下错误:
The current URL, org/list/org-list.html, didn't match any of these.
写回答
1回答
-
bobby
2017-06-05
你全局搜索一下 org/list/org-list.html 应该是html中某个地方配置了 org/list/org-list.html 这个了 而不是url这种写法有问题
00
相似问题