mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-06-24 11:33:38 +02:00
Add install instructions for email templates. Fixes #294.
This commit is contained in:
parent
19ec7bee96
commit
afe6335995
@ -39,7 +39,7 @@ Adding To Your Django Project
|
|||||||
'django.contrib.admin', # Required for helpdesk admin/maintenance
|
'django.contrib.admin', # Required for helpdesk admin/maintenance
|
||||||
'django.contrib.markup', # Required for helpdesk text display
|
'django.contrib.markup', # Required for helpdesk text display
|
||||||
'django.contrib.humanize', # Required for elapsed time formatting
|
'django.contrib.humanize', # Required for elapsed time formatting
|
||||||
'south', # Highly recommended to make database migrations simpler.
|
'south', # Highly recommended to make database migrations simpler in Django < 1.7
|
||||||
'markdown_deux', # Required for Knowledgebase item formatting
|
'markdown_deux', # Required for Knowledgebase item formatting
|
||||||
'helpdesk', # This is new!
|
'helpdesk', # This is new!
|
||||||
)
|
)
|
||||||
@ -58,7 +58,7 @@ Adding To Your Django Project
|
|||||||
|
|
||||||
./manage.py syncdb
|
./manage.py syncdb
|
||||||
|
|
||||||
Then migrate using South
|
Then migrate using South / Django 1.7+ migrations::
|
||||||
|
|
||||||
./manage.py migrate helpdesk
|
./manage.py migrate helpdesk
|
||||||
|
|
||||||
@ -98,3 +98,7 @@ Adding To Your Django Project
|
|||||||
LOGIN_URL = '/helpdesk/login/'
|
LOGIN_URL = '/helpdesk/login/'
|
||||||
|
|
||||||
Alter the URL to suit your installation path.
|
Alter the URL to suit your installation path.
|
||||||
|
|
||||||
|
9. Load initial e-mail templates, otherwise you will not be able to setnd e-mail::
|
||||||
|
|
||||||
|
python manage.py loaddata emailtemplate.json
|
||||||
|
Loading…
x
Reference in New Issue
Block a user