{% if published_courses %}
{{ _("Published Courses") }}
{{ format_number(frappe.db.count("LMS Course", { "published": 1, "upcoming": 0 })) }}
{% endif %}
{% if total_signups %}
{{ _("Total Signups") }}
{{ format_number(frappe.db.count("User", { "enabled": 1 })) }}
{% endif %}
{% if enrollment_count %}
{{ _("Enrollment Count") }}
{{ format_number(frappe.db.count("LMS Batch Membership")) }}
{% endif %}