Kaydet (Commit) d0833968 authored tarafından Jacob Kaplan-Moss's avatar Jacob Kaplan-Moss

Fixed #9675: added note about upgrading the URLconf to the comment upgrade guide.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10746 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst e7fdfa14
...@@ -25,6 +25,15 @@ The main changes from the old system are: ...@@ -25,6 +25,15 @@ The main changes from the old system are:
functions: ``{% get_comment_form %}``, which returns a form for posting a functions: ``{% get_comment_form %}``, which returns a form for posting a
new comment, and ``{% render_comment_form %}``, which renders said form new comment, and ``{% render_comment_form %}``, which renders said form
using the ``comments/form.html`` template. using the ``comments/form.html`` template.
* The way comments are include in your URLconf have changed; you'll need to
replace::
(r'^comments/', include('django.contrib.comments.urls.comments')),
with::
(r'^comments/', include('django.contrib.comments.urls')),
Upgrading data Upgrading data
-------------- --------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment