Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
01d95b7e
Commit
01d95b7e
authored
Mar 19, 2013
by
John Jarvis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing merge issues
parent
63d85a52
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
common/djangoapps/student/views.py
+4
-4
No files found.
common/djangoapps/student/views.py
View file @
01d95b7e
...
...
@@ -216,7 +216,7 @@ def signin_user(request):
This view will display the non-modal login form
"""
context
=
{}
return
render_to_response
(
'
accounts_
login.html'
,
context
)
return
render_to_response
(
'login.html'
,
context
)
def
register_user
(
request
):
"""
...
...
@@ -366,7 +366,7 @@ def change_enrollment(request):
@ensure_csrf_cookie
def
accounts_login
(
request
,
error
=
""
):
return
render_to_response
(
'login.html'
,
{
'error'
:
error
})
return
render_to_response
(
'
accounts_
login.html'
,
{
'error'
:
error
})
# Need different levels of logging
...
...
@@ -1161,8 +1161,8 @@ def test_center_login(request):
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
=
Mod
ule
DataCache
.
cache_for_descriptor_descendents
(
course_id
,
testcenteruser
.
user
,
timelimit_descriptor
,
depth
=
None
)
timelimit_module_cache
=
Mod
el
DataCache
.
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_cache
,
course_id
,
position
=
None
)
if
not
timelimit_module
.
category
==
'timelimit'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment