Skip to content

Commit

Permalink
Merge pull request #329 from reduxionist/patch-1
Browse files Browse the repository at this point in the history
Update install.rst
  • Loading branch information
rossp committed Jun 9, 2015
2 parents 3d8acca + caa1ec2 commit 140c241
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit 140c241

Please sign in to comment.