forked from extern/django-helpdesk
Merge pull request #1026 from bbrendon/patch-1
update install for noobs like me
This commit is contained in:
commit
315c5b2fa8
@ -74,11 +74,12 @@ errors with trying to create User settings.
|
|||||||
|
|
||||||
SITE_ID = 1
|
SITE_ID = 1
|
||||||
|
|
||||||
2. Make sure django-helpdesk is accessible via ``urls.py``. Add the following line to ``urls.py``::
|
2. Make sure django-helpdesk is accessible via ``urls.py``. Add the following lines to ``urls.py``::
|
||||||
|
|
||||||
|
from django.conf.urls import include
|
||||||
path('helpdesk/', include('helpdesk.urls')),
|
path('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::
|
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 path line will be as follows::
|
||||||
|
|
||||||
path('', include('helpdesk.urls', namespace='helpdesk')),
|
path('', include('helpdesk.urls', namespace='helpdesk')),
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user