From 97b076cb84d4ebf0fb97bc6b5c072505397f6629 Mon Sep 17 00:00:00 2001 From: Diana Huang Date: Wed, 30 Oct 2013 09:24:00 -0400 Subject: [PATCH] Hide certificates section if enrolled as audit. LMS-1133 --- lms/templates/dashboard/_dashboard_course_listing.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/templates/dashboard/_dashboard_course_listing.html b/lms/templates/dashboard/_dashboard_course_listing.html index 0a7925e93b..c43e7e79de 100644 --- a/lms/templates/dashboard/_dashboard_course_listing.html +++ b/lms/templates/dashboard/_dashboard_course_listing.html @@ -57,7 +57,7 @@ - % if course.has_ended() and cert_status: + % if course.has_ended() and cert_status and not enrollment.mode == 'audit': <% if cert_status['status'] == 'generating': status_css_class = 'course-status-certrendering'