Ticket #9614: 9614.diff

File 9614.diff, 669 bytes (added by Thejaswi Puthraya, 15 years ago)

git-patch against latest checkout

  • docs/ref/contrib/comments/index.txt

    diff --git a/docs/ref/contrib/comments/index.txt b/docs/ref/contrib/comments/index.txt
    index b6812a8..bfa089a 100644
    a b To get started using the ``comments`` app, follow these steps:  
    2727    #. Install the comments framework by adding ``'django.contrib.comments'`` to   
    2828       :setting:`INSTALLED_APPS`.
    2929
     30    #. Add the ``'django.core.context_processors.request'`` to 
     31       :setting:`TEMPLATE_CONTEXT_PROCESSORS`.
     32
    3033    #. Run ``manage.py syncdb`` so that Django will create the comment tables.
    3134
    3235    #. Add the comment app's URLs to your project's ``urls.py``:
Back to Top