Add group model.
[xnet] / xnet / settings.py
index 7119125..014d798 100644 (file)
@@ -42,6 +42,10 @@ TIME_ZONE = 'Europe/Paris'
 # Language code for this installation. All choices can be found here:
 # http://www.i18nguy.com/unicode/language-identifiers.html
 LANGUAGE_CODE = 'en-us'
+OCALE_PATHS = (
+    os.path.join(ROOT_DIR, 'locale'),
+)
+
 
 SITE_ID = 1
 
@@ -116,6 +120,7 @@ ROOT_URLCONF = 'xnet.urls'
 WSGI_APPLICATION = 'xnet.wsgi.application'
 
 TEMPLATE_DIRS = (
+    os.path.join(ROOT_DIR, 'templates'),
     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
     # Always use forward slashes, even on Windows.
     # Don't forget to use absolute paths, not relative paths.
@@ -132,6 +137,7 @@ INSTALLED_APPS = (
 
     'django_authgroupex',
     'xnet.site',
+    'xnet.group',
     'xnet.example',
 )