Adding accounts.

master
Nick Sergeant 2012-06-26 11:33:22 -04:00
parent 5eb342edb3
commit efeac8bc5e
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@
import os, socket import os, socket
if socket.gethostname() in ['nickmba.local', 'nickimac.local']: if socket.gethostname() in ['mba.local', 'mbp.local']:
DEBUG = True DEBUG = True
else: else:
DEBUG = False DEBUG = False
@ -144,6 +144,7 @@ INSTALLED_APPS = (
'taggit', 'taggit',
'tastypie', 'tastypie',
'accounts',
'blogs', 'blogs',
'snipts', 'snipts',
'utils', 'utils',
@ -208,6 +209,9 @@ ABSOLUTE_URL_OVERRIDES = {
'auth.user': lambda u: "/%s/" % u.username, 'auth.user': lambda u: "/%s/" % u.username,
} }
# Accounts
AUTH_PROFILE_MODULE = 'accounts.UserProfile'
# Caching # Caching
# Search # Search

View File

@ -1,3 +1,2 @@
from django.db import models from django.db import models
# Create your models here.