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
3a3945f9
Commit
3a3945f9
authored
Nov 09, 2012
by
Victor Shnayder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
show proper course will-start/started/ended text on dashboard
parent
0f0725d4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
+13
-1
common/lib/xmodule/xmodule/course_module.py
+4
-0
lms/templates/dashboard.html
+9
-1
No files found.
common/lib/xmodule/xmodule/course_module.py
View file @
3a3945f9
...
@@ -249,6 +249,10 @@ class CourseDescriptor(SequenceDescriptor):
...
@@ -249,6 +249,10 @@ class CourseDescriptor(SequenceDescriptor):
def
start_date_text
(
self
):
def
start_date_text
(
self
):
return
time
.
strftime
(
"
%
b
%
d,
%
Y"
,
self
.
start
)
return
time
.
strftime
(
"
%
b
%
d,
%
Y"
,
self
.
start
)
@property
def
end_date_text
(
self
):
return
time
.
strftime
(
"
%
b
%
d,
%
Y"
,
self
.
end
)
# An extra property is used rather than the wiki_slug/number because
# An extra property is used rather than the wiki_slug/number because
# there are courses that change the number for different runs. This allows
# there are courses that change the number for different runs. This allows
# courses to share the same css_class across runs even if they have
# courses to share the same css_class across runs even if they have
...
...
lms/templates/dashboard.html
View file @
3a3945f9
...
@@ -137,7 +137,15 @@
...
@@ -137,7 +137,15 @@
<h3>
${course.number} ${course.title}
</h3>
<h3>
${course.number} ${course.title}
</h3>
</hgroup>
</hgroup>
<section
class=
"course-status course-status-completed"
>
<section
class=
"course-status course-status-completed"
>
<p>
<!-- Class Starts - <span>${course.start_date_text}</span> -->
Course Completed -
<span>
Nov 6, 2012
</span></p>
<p>
% if course.has_ended():
Course Completed -
<span>
${course.end_date_text}
</span>
% elif course.has_started():
Course Started -
<span>
${course.start_date_text}
</span>
% else: # hasn't started yet
Course Starts -
<span>
${course.start_date_text}
</span>
% endif
</p>
</section>
</section>
% if course.id in show_courseware_links_for:
% if course.id in show_courseware_links_for:
<p
class=
"enter-course"
>
View Courseware
</p>
<p
class=
"enter-course"
>
View Courseware
</p>
...
...
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