Hey {{current_person.first_name}}, welcome to the Dasher learning center. Educate yourself on the best practices used by the highest-rated Dashers.
LEARNING CENTER
{% for course in courses.enrolled %}
{% for cat in course.categories %}
{% if cat.name == "Dasher101" %}
{% include 'cards_course_lp' with course %}
{% endif %}
{% endfor %}
{% endfor %}
{% if courses.enrolled.any? %}
{% for course in courses.enrolled %}
{% for cat in course.categories %}
{% if cat.name != "Dasher101" %}
{% include "cards_course" with course %}
{% endif%}
{% endfor %}
{% endfor %}
{% else %}
{% capture message %}
{% t shared.zero_state.courses.index,
key: current_school.course_vocabulary
%}
{% endcapture %}
{% include "courses_zero_state", message: message %}
{% endif %}
{% if features.training_events? %}
{% t .upcoming_events %}
{% include "training_events_dashboard" %}
{% endif %}
{% include "footer" %} {% endcomment %}