Move UserProfile and Registration out of courseware and into a renamed auth (now user)

--HG--
rename : auth/__init__.py => user/__init__.py
rename : auth/tests.py => user/tests.py
rename : auth/views.py => user/views.py
This commit is contained in:
David Ormsbee
2012-02-01 19:32:18 -05:00
parent 40efe3e7cb
commit 72c45e8bbb
10 changed files with 70 additions and 53 deletions

View File

@@ -7,7 +7,7 @@ from mako.lookup import TemplateLookup
try: # This lets us do __name__ == ='__main__'
from django.conf import settings
from models import UserProfile
from user.models import UserProfile
except:
settings = None