{%comment%} {% assign show_learning_paths_section = false %} {% assign show_events_section = false %} {% assign learning_path_section_classes = "" %} {% assign event_section_classes = "" %} {% assign learning_path_card_classes = "col-md-6" %} {% assign event_card_classes = "col-x-sm-6 col-sm-6 col-md-4 col-lg-3" %} {% if features.learning_paths? and learning_paths.enrolled and learning_paths.enrolled.any? %} {% assign show_learning_paths_section = true %} {% endif %} {% if features.training_events? and training_events.enrolled and training_events.enrolled.any? %} {% assign show_events_section = true %} {% endif %} {% if show_learning_paths_section %} {% assign learning_path_section_classes = "col-md-8 col-lg-6" %} {% assign learning_path_card_classes = "" %} {% endif %} {%if show_events_section%} {% assign event_section_classes = "col-md-4 col-lg-6" %} {% assign event_card_classes = "col-x-sm-6 col-sm-6 col-md-12 col-lg-6" %} {%endif%} {% include "header", current_page_orgin: "dashboard" %}
{% if courses.featured and courses.featured.any? %}
{% include "banner_course", course: courses.featured.first, button_text: "Get Started" %}
{% endif %} {% if show_learning_paths_section or show_events_section %}
{% if show_learning_paths_section %}

Learning Paths

{% include "learning_paths_index", items: learning_paths.enrolled, card_classes: learning_path_card_classes %}
{% endif %} {% if show_events_section %}

Upcoming Events

{% include "training_events_dashboard", card_classes: event_card_classes %}
{% endif %}
{% endif %}

My Courses

{% if courses.enrolled and courses.enrolled.any? %}
{% for course in courses.enrolled %} {% for category in course.categories %} {% if category.name == 'Partner Training' %} {% include "cards_course", course: course, card_classes: card_classes %} {% endif %} {% endfor %} {% endfor %}
{% else %} {% capture message %} {% t shared.zero_state.courses.index, key: current_school.course_vocabulary %} {% endcapture %} {% assign message = message | replace: "Courses", "tutorials" %} {% include "courses_zero_state", message: message, filters_applied: false %} {% endif %}
{% include "footer" %}{%endcomment%}