Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
02ecfb47
Commit
02ecfb47
authored
12 years ago
by
Arjun Singh
Browse files
Options
Downloads
Patches
Plain Diff
Adding comments about removing the syllabus tab ASAP.
parent
b86fbdbd
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lms/djangoapps/courseware/views.py
+1
-0
1 addition, 0 deletions
lms/djangoapps/courseware/views.py
lms/static/sass/course.scss
+1
-1
1 addition, 1 deletion
lms/static/sass/course.scss
lms/urls.py
+1
-1
1 addition, 1 deletion
lms/urls.py
with
3 additions
and
2 deletions
lms/djangoapps/courseware/views.py
+
1
−
0
View file @
02ecfb47
...
...
@@ -233,6 +233,7 @@ def course_info(request, course_id):
return
render_to_response
(
'
courseware/info.html
'
,
{
'
course
'
:
course
,
'
staff_access
'
:
staff_access
,})
# TODO arjun: remove when custom tabs in place, see courseware/syllabus.py
@ensure_csrf_cookie
def
syllabus
(
request
,
course_id
):
"""
...
...
This diff is collapsed.
Click to expand it.
lms/static/sass/course.scss
+
1
−
1
View file @
02ecfb47
...
...
@@ -29,7 +29,7 @@
// pages
@import
"course/info"
;
@import
"course/syllabus"
;
@import
"course/syllabus"
;
// TODO arjun replace w/ custom tabs, see courseware/courses.py
@import
"course/textbook"
;
@import
"course/profile"
;
@import
"course/gradebook"
;
...
...
This diff is collapsed.
Click to expand it.
lms/urls.py
+
1
−
1
View file @
02ecfb47
...
...
@@ -127,7 +127,7 @@ if settings.COURSEWARE_ENABLED:
url
(
r
'
^courses/(?P<course_id>[^/]+/[^/]+/[^/]+)/info$
'
,
'
courseware.views.course_info
'
,
name
=
"
info
"
),
url
(
r
'
^courses/(?P<course_id>[^/]+/[^/]+/[^/]+)/syllabus$
'
,
'
courseware.views.syllabus
'
,
name
=
"
syllabus
"
),
'
courseware.views.syllabus
'
,
name
=
"
syllabus
"
),
# TODO arjun remove when custom tabs in place, see courseware/courses.py
url
(
r
'
^courses/(?P<course_id>[^/]+/[^/]+/[^/]+)/book/(?P<book_index>[^/]*)/$
'
,
'
staticbook.views.index
'
,
name
=
"
book
"
),
url
(
r
'
^courses/(?P<course_id>[^/]+/[^/]+/[^/]+)/book/(?P<book_index>[^/]*)/(?P<page>[^/]*)$
'
,
...
...
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