Merge pull request #329 from reduxionist/patch-1

Update install.rst
This commit is contained in:
Ross Poulton 2015-06-10 09:34:14 +10:00
commit 140c241cfe

View File

@ -46,11 +46,11 @@ Adding To Your Django Project
2. Make sure django-helpdesk is accessible via ``urls.py``. Add the following line to ``urls.py``::
(r'helpdesk/', include('helpdesk.urls')),
url(r'helpdesk/', include('helpdesk.urls')),
Note that you can change 'helpdesk/' to anything you like, such as 'support/' or 'help/'. If you want django-helpdesk to be available at the root of your site (for example at http://support.mysite.tld/) then the line will be as follows::
(r'', include('helpdesk.urls')),
url(r'', include('helpdesk.urls')),
This line will have to come *after* any other lines in your urls.py such as those used by the Django admin.