Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
63d85a52
Commit
63d85a52
authored
12 years ago
by
John Jarvis
Browse files
Options
Downloads
Patches
Plain Diff
fixing merge issues
parent
78987cc4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
common/djangoapps/student/views.py
+4
-4
4 additions, 4 deletions
common/djangoapps/student/views.py
with
4 additions
and
4 deletions
common/djangoapps/student/views.py
+
4
−
4
View file @
63d85a52
...
...
@@ -216,7 +216,7 @@ def signin_user(request):
This view will display the non-modal login form
"""
context
=
{}
return
render_to_response
(
'
login.html
'
,
context
)
return
render_to_response
(
'
accounts_
login.html
'
,
context
)
def
register_user
(
request
):
"""
...
...
@@ -1160,10 +1160,10 @@ def test_center_login(request):
if
not
timelimit_descriptor
:
log
.
error
(
"
cand {} on exam {} for course {}: descriptor not found for location {}
"
.
format
(
client_candidate_id
,
exam_series_code
,
course_id
,
location
))
return
HttpResponseRedirect
(
makeErrorURL
(
error_url
,
"
missingClientProgram
"
));
timelimit_module_cache
=
Student
ModuleCache
.
cache_for_descriptor_descendents
(
course_id
,
testcenteruser
.
user
,
timelimit_module_cache
=
Module
Data
Cache
.
cache_for_descriptor_descendents
(
course_id
,
testcenteruser
.
user
,
timelimit_descriptor
,
depth
=
None
)
timelimit_module
=
get_module_for_descriptor
(
request
.
user
,
request
,
timelimit_descriptor
,
timelimit_module
=
get_module_for_descriptor
(
request
.
user
,
request
,
timelimit_descriptor
,
timelimit_module_cache
,
course_id
,
position
=
None
)
if
not
timelimit_module
.
category
==
'
timelimit
'
:
log
.
error
(
"
cand {} on exam {} for course {}: non-timelimit module at location {}
"
.
format
(
client_candidate_id
,
exam_series_code
,
course_id
,
location
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment