将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.