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

@@ -19,7 +19,8 @@ from django.template import Context
from django.template import Context, loader
from mitxmako.shortcuts import render_to_response, render_to_string
from models import StudentModule, UserProfile
from models import StudentModule
from user.models import UserProfile
import track.views
import courseware.content_parser as content_parser