From afe63359958a3ec004427e2815e96468a5b24162 Mon Sep 17 00:00:00 2001 From: Ross Poulton Date: Sat, 14 Feb 2015 11:10:20 +1100 Subject: [PATCH] Add install instructions for email templates. Fixes #294. --- docs/install.rst | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index f9561984..36475b60 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -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! ) @@ -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 @@ -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