Fixed #18625 -- Removed old-style use of url tag

from the documentation.
This commit is contained in:
Aymeric Augustin 2012-07-15 11:19:00 +02:00
parent c57abd3c29
commit fb46f243b4
3 changed files with 6 additions and 6 deletions

View file

@ -250,7 +250,7 @@ Redirecting after the comment post
To specify the URL you want to redirect to after the comment has been posted,
you can include a hidden form input called ``next`` in your comment form. For example::
<input type="hidden" name="next" value="{% url my_comment_was_posted %}" />
<input type="hidden" name="next" value="{% url 'my_comment_was_posted' %}" />
.. _notes-on-the-comment-form: