From f4c4a9be96744d82a2b86debc9263a2abaa056b4 Mon Sep 17 00:00:00 2001 From: Carla Duarte Date: Tue, 9 Feb 2021 11:28:28 -0500 Subject: [PATCH] AA-511: update dashboard certificate button styling --- .../_dashboard_certificate_information.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lms/templates/dashboard/_dashboard_certificate_information.html b/lms/templates/dashboard/_dashboard_certificate_information.html index 230122bcd1..ffe104ce60 100644 --- a/lms/templates/dashboard/_dashboard_certificate_information.html +++ b/lms/templates/dashboard/_dashboard_certificate_information.html @@ -89,29 +89,29 @@ else: % elif cert_status['status'] == 'downloadable' and cert_status.get('show_cert_web_view', False): -
  • - + ${_("View {cert_name_short}").format(cert_name_short=cert_name_short,)}
  • % elif cert_status['status'] == 'downloadable' and enrollment.mode in CourseMode.NON_VERIFIED_MODES: -
  • - + ${_("Download {cert_name_short} (PDF)").format(cert_name_short=cert_name_short,)}
  • % elif cert_status['status'] == 'downloadable' and enrollment.mode == 'verified' and cert_status['mode'] == 'honor': -
  • - + ${_("Download Your {cert_name_short} (PDF)").format(cert_name_short=cert_name_short)}
  • % elif cert_status['status'] == 'downloadable' and enrollment.mode in CourseMode.VERIFIED_MODES: -
  • - + ${_("Download Your ID Verified {cert_name_short} (PDF)").format(cert_name_short=cert_name_short)}