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
bbcc19bf
Commit
bbcc19bf
authored
Jul 18, 2012
by
David Ormsbee
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #208 from MITx/release_fixes
Release fixes
parents
a3d48cf2
a9078ac0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
+10
-3
lms/djangoapps/courseware/courses.py
+2
-1
lms/templates/dashboard.html
+8
-2
No files found.
lms/djangoapps/courseware/courses.py
View file @
bbcc19bf
...
@@ -8,6 +8,7 @@ from django.http import Http404
...
@@ -8,6 +8,7 @@ from django.http import Http404
from
xmodule.course_module
import
CourseDescriptor
from
xmodule.course_module
import
CourseDescriptor
from
xmodule.modulestore.django
import
modulestore
from
xmodule.modulestore.django
import
modulestore
from
xmodule.modulestore.exceptions
import
ItemNotFoundError
log
=
logging
.
getLogger
(
__name__
)
log
=
logging
.
getLogger
(
__name__
)
...
@@ -29,7 +30,7 @@ def check_course(course_id, course_must_be_open=True, course_required=True):
...
@@ -29,7 +30,7 @@ def check_course(course_id, course_must_be_open=True, course_required=True):
try
:
try
:
course_loc
=
CourseDescriptor
.
id_to_location
(
course_id
)
course_loc
=
CourseDescriptor
.
id_to_location
(
course_id
)
course
=
modulestore
()
.
get_item
(
course_loc
)
course
=
modulestore
()
.
get_item
(
course_loc
)
except
KeyError
:
except
(
KeyError
,
ItemNotFoundError
)
:
raise
Http404
(
"Course not found."
)
raise
Http404
(
"Course not found."
)
if
course_must_be_open
and
not
course
.
has_started
():
if
course_must_be_open
and
not
course
.
has_started
():
...
...
lms/templates/dashboard.html
View file @
bbcc19bf
...
@@ -33,14 +33,20 @@
...
@@ -33,14 +33,20 @@
% for course in courses:
% for course in courses:
<article
class=
"my-course"
>
<article
class=
"my-course"
>
<a
href=
"${reverse('info', args=[course.id])}"
class=
"cover"
style=
"background-image: url('${course_image_url(course)}')"
>
<
%
if
course
.
has_started
()
:
course_target =
reverse('info',
args=
[course.id])
else:
course_target =
reverse('about_course',
args=
[course.id])
%
>
<a
href=
"${course_target}"
class=
"cover"
style=
"background-image: url('${course_image_url(course)}')"
>
<div
class=
"shade"
></div>
<div
class=
"shade"
></div>
<div
class=
"arrow"
></div>
<div
class=
"arrow"
></div>
</a>
</a>
<section
class=
"info"
>
<section
class=
"info"
>
<hgroup>
<hgroup>
<a
href=
"#"
class=
"university"
>
${get_course_about_section(course, 'university')}
</a>
<a
href=
"#"
class=
"university"
>
${get_course_about_section(course, 'university')}
</a>
<h3><a
href=
"${
reverse('info', args=[course.id])
}"
>
${get_course_about_section(course, "title")}
</a></h3>
<h3><a
href=
"${
course_target
}"
>
${get_course_about_section(course, "title")}
</a></h3>
</hgroup>
</hgroup>
<section
class=
"course-status"
>
<section
class=
"course-status"
>
<p>
Class Starts -
<span>
9/2/2012
</span></div>
<p>
Class Starts -
<span>
9/2/2012
</span></div>
...
...
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