Moved all project files under a "helpdesk" directory. Should make it easier to use setup.py / pypi / whatever in the future.

This commit is contained in:
Ross Poulton
2011-01-25 23:02:00 +00:00
parent af7c9cb797
commit 53327eb66a
131 changed files with 0 additions and 0 deletions

14
helpdesk/settings.py Normal file
View File

@ -0,0 +1,14 @@
"""
Default settings for jutda-helpdesk.
"""
from django.conf import settings
# check for django-tagging support
HAS_TAG_SUPPORT = 'tagging' in settings.INSTALLED_APPS
try:
import tagging
except ImportError:
HAS_TAG_SUPPORT = False