diff --git a/lms/templates/courseware/course_navigation.html b/lms/templates/courseware/course_navigation.html index ea367873e2..76868ebb99 100644 --- a/lms/templates/courseware/course_navigation.html +++ b/lms/templates/courseware/course_navigation.html @@ -20,6 +20,9 @@ def url_class(is_active):
  • ${tab.name | h} + % if tab.is_active == True: + , current location + %endif % if tab.has_img == True: %endif diff --git a/lms/templates/courseware/progress.html b/lms/templates/courseware/progress.html index fcd4348f96..f7021c9fd6 100644 --- a/lms/templates/courseware/progress.html +++ b/lms/templates/courseware/progress.html @@ -35,7 +35,7 @@ ${progress_graph.body(grade_summary, course.grade_cutoffs, "grade-detail-graph", %if not course.disable_progress_graph: -
    + %endif
      @@ -54,7 +54,12 @@ ${progress_graph.body(grade_summary, course.grade_cutoffs, "grade-detail-graph", %>

      - ${ section['display_name'] } + ${ section['display_name'] } + %if total > 0 or earned > 0: + + ${"{0:.3n} of {1:.3n} possible points".format( float(earned), float(total) )} + + %endif %if total > 0 or earned > 0: ${"({0:.3n}/{1:.3n}) {2}".format( float(earned), float(total), percentageString )} %endif diff --git a/lms/templates/login.html b/lms/templates/login.html index d3c3384847..4107a463e1 100644 --- a/lms/templates/login.html +++ b/lms/templates/login.html @@ -86,7 +86,7 @@