yet another rename, from auth -> user -> student

--HG--
rename : user/__init__.py => student/__init__.py
rename : user/migrations/0001_initial.py => student/migrations/0001_initial.py
rename : user/migrations/0002_text_to_varchar_and_indexes.py => student/migrations/0002_text_to_varchar_and_indexes.py
rename : user/migrations/__init__.py => student/migrations/__init__.py
rename : user/models.py => student/models.py
rename : user/tests.py => student/tests.py
rename : user/views.py => student/views.py
This commit is contained in:
David Ormsbee
2012-02-02 14:31:42 -05:00
parent 2048a2ebc7
commit 7e1d23308c
12 changed files with 20 additions and 20 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 user.models import UserProfile
from student.models import UserProfile
except:
settings = None

View File

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

View File

@@ -19,7 +19,7 @@ from lxml import etree
from module_render import render_module, modx_dispatch
from models import StudentModule
from user.models import UserProfile
from student.models import UserProfile
import courseware.content_parser as content_parser
import courseware.modules.capa_module