Skip to content

Commit

Permalink
Add install instructions for email templates. Fixes #294.
Browse files Browse the repository at this point in the history
  • Loading branch information
rossp committed Feb 14, 2015
1 parent 19ec7be commit afe6335
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Adding To Your Django Project
'django.contrib.admin', # Required for helpdesk admin/maintenance
'django.contrib.markup', # Required for helpdesk text display
'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
'helpdesk', # This is new!
)
Expand All @@ -58,7 +58,7 @@ Adding To Your Django Project

./manage.py syncdb

Then migrate using South
Then migrate using South / Django 1.7+ migrations::

./manage.py migrate helpdesk

Expand Down Expand Up @@ -98,3 +98,7 @@ Adding To Your Django Project
LOGIN_URL = '/helpdesk/login/'

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

0 comments on commit afe6335

Please sign in to comment.