From 51b3d5909464d4498a8503b35e2ee658c0ac929c Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Wed, 27 Apr 2022 17:21:36 +0530 Subject: [PATCH] fix: certificate price on course card web template --- lms/lms/web_template/course_cards/course_cards.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lms/lms/web_template/course_cards/course_cards.html b/lms/lms/web_template/course_cards/course_cards.html index 4c5b8a36..7cf10323 100644 --- a/lms/lms/web_template/course_cards/course_cards.html +++ b/lms/lms/web_template/course_cards/course_cards.html @@ -3,7 +3,7 @@
{% for course_row in courses %} {% set course = frappe.db.get_value("LMS Course", course_row.course, - ["name", "upcoming", "title", "image", "enable_certification"], as_dict=True) %} + ["name", "upcoming", "title", "image", "enable_certification", "paid_certificate", "price_certificate"], as_dict=True) %} {{ widgets.CourseCard(course=course, read_only=False) }} {% endfor %}