1

我得到这个错误。

Caught ImportError while rendering: No module named urls

它指向他的线。

<a href="{% url auth_login %}">{% trans "Log in" %}</a>

我正在使用 django 注册。

我的网址.py

urlpatterns = patterns('',
    url(r'^$', direct_to_template, {"template": "home.html",}, name="home"),
    url(r'^accounts/', include('registration.urls')),
)

我已经在 INSTALLED_APPS 中添加了它。

4

0 回答 0