{% if published_courses %}
{{ _("Published Courses") }}
{{ frappe.utils.fmt_money(
frappe.db.count("LMS Course", {
"published": 1,
"upcoming": 0
})
, 0) }}
{% endif %}
{% if total_signups %}
{{ _("Total Signups") }}
{{ frappe.utils.fmt_money(
frappe.db.count("User", {
"enabled": 1
})
, 0) }}
{% endif %}
{% if enrollment_count %}
{{ _("Enrollment Count") }}
{{ frappe.utils.fmt_money(
frappe.db.count("LMS Batch Membership")
, 0) }}
{% endif %}
{% if course_completion %}
{% set course_completion_count = frappe.db.count("LMS Batch Membership", {
"progress":["like","%100%"]
}) %}
{{ _("Courses Completed") }}
{{ frappe.utils.fmt_money(course_completion_count, 0) }}
{% endif %}
{% if lesson_completion %}
{% set lesson_completion_count = frappe.db.count("LMS Course Progress") %}
{{ _("Lessons Completed") }}
{{ frappe.utils.fmt_money(lesson_completion_count, 0) }}
{% endif %}