Files
Gainsight/Custom_Templates/customer_templates/Gainsight University/dashboard.html.liquid
2024-10-18 16:38:15 -04:00

38 lines
1.2 KiB
Plaintext

{% include "header" %}
{% include "course_version_outdated_alert"
, courses: courses.enrolled %}
{% include "sub_navigation" %}
<main class="np-main np-dashboard np-subpage-container np-max-width">
<div class="row np-flex-center">
<div class="col-xs-12 col-sm-8">
<div class="np-resource-title">
My Learning
</div>
<div class="np-resource-subtitle">
View all of your Enrollments.
</div>
{% if features.learning_paths? %}
<div class="np-dashboard-resources-title">
{% t shared.learning_paths %}
</div>
{% include "learning_paths_index"
, items: learning_paths.enrolled %}
{% endif %}
<div class="np-dashboard-resources-title">
{% t shared.course_vocabulary.plural
, key: current_school.course_vocabulary %}
</div>
{% include "courses_index"
, class: "col-xs-12 col-sm-6 np-stretch-content" %}
</div>
{% if features.training_events? %}
<div class="np-grid-spacing col-xs-12 col-sm-4">
<div class="np-dashboard-resources-title">
Pending Registration
</div>
{% include "training_events_dashboard" %}
</div>
{% endif %}
</div>
</main>
{% include "footer" %}