{% 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 %}