Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #210 from edx/tile-fix
Browse files Browse the repository at this point in the history
Corrected Tile Hiding Criteria
  • Loading branch information
clintonb committed Dec 8, 2014
2 parents 6ec521c + 856141a commit d953299
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions analytics_dashboard/analytics_dashboard/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,6 @@
)
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

LMS_COURSE_VALIDATION_BASE_URL = 'https://courses.edx.org/courses'

########## BRANDING
PLATFORM_NAME = 'edX'
APPLICATION_NAME = 'Insights'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h4 class="section-title">{% trans "Enrollment Metrics" %}</h4>
</div>

{% switch display_verified_enrollment %}
{% if summary.verified_enrollment %}
{% if not summary.verified_enrollment == None %}
<div class="col-xs-12 col-sm-3" data-stat-type="verified_enrollment">
{# Translators: This is a label to identify enrollment of students on the verified track. #}
{% trans "Verified Enrollment" as label %}
Expand All @@ -77,7 +77,7 @@ <h4 class="section-title">{% trans "Enrollment Metrics" %}</h4>
</div>
{% endif %}

{% if summary.verified_change_last_7_days %}
{% if not summary.verified_change_last_7_days == None %}
<div class="col-xs-12 col-sm-3" data-stat-type="verified_change_last_7_days">
{# Translators: This is a label indicating the change in the number of students enrolled in the verified track of a course since the previous week. #}
{% trans "Change in Verified Enrollments Last Week" as label %}
Expand Down

0 comments on commit d953299

Please sign in to comment.