Ticket #5394: 5394-docs.diff

File 5394-docs.diff, 721 bytes (added by Antti Kaihola, 17 years ago)

documentation for the patch

  • docs/settings.txt

     
    582582
    583583This is used by the `@login_required`_ decorator, for example.
    584584
     585Note that the ``next`` parameter can be renamed with
     586``REDIRECT_FIELD_NAME``.
     587
    585588LOGIN_URL
    586589---------
    587590
     
    677680We don't list the default values here, because that would be profane. To see
    678681the default values, see the file ``django/conf/global_settings.py``.
    679682
     683REDIRECT_FIELD_NAME
     684-------------------
     685
     686Default: ``'next'``
     687
     688The name of the GET parameter which is used to redirect the user after
     689the login page.
     690
    680691ROOT_URLCONF
    681692------------
    682693
Back to Top