晚上好!
我刚在我的机器上本地配置了 django-fluent - 它按预期工作。现在我想添加django应用 django-envelope 。我一直想跟随“用法”部分中的django-envelope说明,并将其添加到我的django-fluent安装中:
urlpatterns = patterns('',
#...
url(r'^contact/', include('envelope.urls')),
#...
)
到以下路径: django-fluent.org/src/urls.py 。 我还补充道:
{% extends "base.html" %}
{% load envelope_tags %}
{% block content %}
{% render_contact_form %}
{% endblock %}
至 django-fluent.org/src/frontend/templates/envelope/contact.html
访问127.0.0.1:8000/contact时,我仍然得到:
Page not found (404) - No published 'UrlNode' found for the path '/contact', language 'en'.
我做错了什么?