{%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" %}
My Dashboard
Learning Paths
{% include "learning_paths_index", items: learning_paths.enrolled, card_classes: learning_path_card_classes %}
Upcoming Events
{% include "training_events_dashboard", card_classes: event_card_classes %}
My Courses
{% if courses.enrolled and courses.enrolled.any? %}