From b31068caa9ffedb11660e7147ba774ad59f0ed07 Mon Sep 17 00:00:00 2001 From: Ross Poulton Date: Sat, 5 Mar 2011 03:19:15 +0000 Subject: [PATCH] Add documentation re: login URL. Closes issue GH-48. --- docs/install.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/install.rst b/docs/install.rst index 2649708d..05c5cac3 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -85,3 +85,9 @@ Adding To Your Django Project 7. If it's not already installed, install ``python-markdown``:: pip install Markdown + +8. If you already have a view handling your logins, then great! If not, add the following to ``settings.py`` to get your Django installation to use the login view included in ``django-helpdesk``:: + + LOGIN_URL = '/helpdesk/login/' + + Alter the URL to suit your installation path.