diff --git a/docs/ref/contrib/comments/example.txt b/docs/ref/contrib/comments/example.txt index 921fe03ffa..253701b8da 100644 --- a/docs/ref/contrib/comments/example.txt +++ b/docs/ref/contrib/comments/example.txt @@ -103,13 +103,16 @@ But let's look at a simple example:: - - {{ form }} - - - - - + + {% csrf_token %} + {{ form }} + + + +
+ + +
Flagging diff --git a/docs/ref/contrib/comments/index.txt b/docs/ref/contrib/comments/index.txt index 817871e976..7072ed14ac 100644 --- a/docs/ref/contrib/comments/index.txt +++ b/docs/ref/contrib/comments/index.txt @@ -218,13 +218,18 @@ you can use in the template:: A complete form might look like:: {% get_comment_form for event as form %} -
- {{ form }} - - - - -
+ + + {% csrf_token %} + {{ form }} + + + + +
+ + +
Be sure to read the `notes on the comment form`_, below, for some special considerations you'll need to make if you're using this approach.