소스 검색

Fix Project Name

zry 8 년 전
부모
커밋
1f26e971eb
5개의 변경된 파일6개의 추가작업 그리고 8개의 파일을 삭제
  1. 1 1
      UserManage/views/group.py
  2. 1 1
      UserManage/views/permission.py
  3. 1 1
      UserManage/views/role.py
  4. 2 2
      UserManage/views/user.py
  5. 1 3
      swyzxwb_photovote/views.py

+ 1 - 1
UserManage/views/group.py

@@ -5,7 +5,7 @@ from django.core.urlresolvers import reverse
 from django.http import HttpResponse,HttpResponseRedirect
 from django.shortcuts import render_to_response,RequestContext
 from django.contrib.auth.decorators import login_required
-from website.common.CommonPaginator import SelfPaginator
+from swyzxwb_photovote.common.CommonPaginator import SelfPaginator
 from UserManage.views.permission import PermissionVerify
 from UserManage.xlsgroups import processxls
 from UserManage.forms import GroupListForm,XLSFileForm,RemoveUsersForm

+ 1 - 1
UserManage/views/permission.py

@@ -5,7 +5,7 @@ from django.core.urlresolvers import reverse
 from django.http import HttpResponse,HttpResponseRedirect
 from django.shortcuts import render_to_response,RequestContext
 from django.contrib.auth.decorators import login_required
-from website.common.CommonPaginator import SelfPaginator
+from swyzxwb_photovote.common.CommonPaginator import SelfPaginator
 
 from UserManage.forms import PermissionListForm
 from UserManage.models import User,RoleList,PermissionList

+ 1 - 1
UserManage/views/role.py

@@ -5,7 +5,7 @@ from django.core.urlresolvers import reverse
 from django.http import HttpResponse,HttpResponseRedirect
 from django.shortcuts import render_to_response,RequestContext
 from django.contrib.auth.decorators import login_required
-from website.common.CommonPaginator import SelfPaginator
+from swyzxwb_photovote.common.CommonPaginator import SelfPaginator
 from UserManage.views.permission import PermissionVerify
 
 from UserManage.forms import RoleListForm

+ 2 - 2
UserManage/views/user.py

@@ -5,8 +5,8 @@ from django.core.urlresolvers import reverse
 from django.http import HttpResponse,HttpResponseRedirect
 from django.shortcuts import render_to_response,RequestContext
 from django.contrib.auth.decorators import login_required
-from website.common.CommonPaginator import SelfPaginator
-from website.common.CommonFilter import CommonFilter,FilterCondition
+from swyzxwb_photovote.common.CommonPaginator import SelfPaginator
+from swyzxwb_photovote.common.CommonFilter import CommonFilter,FilterCondition
 from UserManage.views.permission import PermissionVerify
 from UserManage.xlsusers import processxls
 from UserManage.models import User,RoleList,GroupList

+ 1 - 3
swyzxwb_photovote/views.py

@@ -5,10 +5,8 @@ from django.contrib.auth.decorators import login_required
 from django.http import HttpResponse,HttpResponseRedirect
 from django.shortcuts import render_to_response,RequestContext
 from UserManage.views.permission import PermissionVerify
-from msgboard.models import LeaveMsg,PostMsg
-from counsel.models import BookInfo
+
 from django.contrib.auth import get_user_model
-from ExamPage.models import ExamProject,ExamPaper,UserRecord
 
 @login_required
 @PermissionVerify()