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
ca9cb86a
Commit
ca9cb86a
authored
Nov 09, 2012
by
Victor Shnayder
Committed by
Carlos Andrés Rocha
Nov 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
show proper course will-start/started/ended text on dashboard
parent
1b2371d6
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 @
ca9cb86a
...
...
@@ -250,6 +250,10 @@ class CourseDescriptor(SequenceDescriptor):
displayed_start
=
self
.
_try_parse_time
(
'advertised_start'
)
or
self
.
start
return
time
.
strftime
(
"
%
b
%
d,
%
Y"
,
displayed_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
# 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
...
...
lms/templates/dashboard.html
View file @
ca9cb86a
...
...
@@ -137,7 +137,15 @@
<h3>
${course.number} ${course.title}
</h3>
</hgroup>
<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>
% if course.id in show_courseware_links_for:
<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