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
5d0328aa
Commit
5d0328aa
authored
11 years ago
by
Adam Palay
Browse files
Options
Downloads
Patches
Plain Diff
creates "edge" case
parent
cac6a319
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lms/djangoapps/branding/views.py
+11
-6
11 additions, 6 deletions
lms/djangoapps/branding/views.py
with
11 additions
and
6 deletions
lms/djangoapps/branding/views.py
+
11
−
6
View file @
5d0328aa
...
...
@@ -28,10 +28,13 @@ def index(request):
return
redirect
(
settings
.
MKTG_URLS
.
get
(
'
ROOT
'
))
university
=
branding
.
get_university
(
request
.
META
.
get
(
'
HTTP_HOST
'
))
if
university
is
None
:
return
student
.
views
.
index
(
request
,
user
=
request
.
user
)
if
university
==
'
edge
'
:
return
render_to_response
(
'
university_profile/edge.html
'
,
{})
# we do not expect this case to be reached in cases where
# marketing and edge are enabled
return
student
.
views
.
index
(
request
,
user
=
request
.
user
)
return
render_to_response
(
'
university_profile/edge.html
'
,
{})
@ensure_csrf_cookie
...
...
@@ -46,7 +49,9 @@ def courses(request):
return
redirect
(
marketing_link
(
'
COURSES
'
),
permanent
=
True
)
university
=
branding
.
get_university
(
request
.
META
.
get
(
'
HTTP_HOST
'
))
if
university
is
None
:
return
courseware
.
views
.
courses
(
request
)
if
university
==
'
edge
'
:
return
render_to_response
(
'
university_profile/edge.html
'
,
{}
)
return
render_to_response
(
'
university_profile/edge.html
'
,
{})
# we do not expect this case to be reached in cases where
# marketing and edge are enabled
return
courseware
.
views
.
courses
(
request
)
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