Ticket #12350: 12350.diff

File 12350.diff, 720 bytes (added by Tim Graham, 14 years ago)

typo

  • docs/intro/tutorial04.txt

     
    4949
    5050    * Since we are creating a POST form (which can have the effect of modifying
    5151      data), we unfortunately need to worry about Cross Site Request Forgeries.
    52       Thankfully, you don't have to worry too hard, because Django comes with
     52      Thankfully, you don't have to worry too hard, because Django comes with a
    5353      very easy-to-use system for protecting against it.  In short, all POST
    5454      forms that are targetted at internal URLs need the ``{% csrf_token %}``
    5555      template tag adding.
Back to Top