Core Courses
Building your HRIS Foundation
{% if courses.enrolled.any? %}
{% for course in courses.enrolled %}
{% if course.ribbon == "Core Setup" %}
{% include "cards_course" with course %}
{% endif %}
{% endfor %}
{% else %}
{% t .empty, key: current_school.course_vocabulary %}
{% endif %}
{% if courses.enrolled.any? %}
{% for course in courses.enrolled %}
{% if course.ribbon != "Core Setup" %}
{% include "cards_course" with course %}
{% endif %}
{% endfor %}
{% else %}
{% t .empty, key: current_school.course_vocabulary %}
{% endif %}