Datasnipper nav and page updates. Supplier sub nav color updates. nTransit added SVGs icons for their categories.
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
{% assign getting_started_courses = false %}
|
||||
{% assign merchandising_courses = false %}
|
||||
{% assign analysis_and_reporting_courses = false %}
|
||||
{% assign courses_in_progress = false %}
|
||||
|
||||
{% for course in courses.in_catalog %}
|
||||
{% for category in course.categories %}
|
||||
@ -16,6 +17,12 @@
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
{% for course in courses.enrolled %}
|
||||
{% if course.progress > 0 and course.progress < 100 %}
|
||||
{% assign courses_in_progress = true %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
|
||||
{% include "header" %}
|
||||
{% include "course_version_outdated_alert", courses: courses.enrolled %}
|
||||
@ -34,11 +41,22 @@
|
||||
</div>
|
||||
<div class="np-grid-spacing col-xs-12 col-md-4 progress-section">
|
||||
{% include "widget_course_progress" %}
|
||||
{% if features.training_events? %}
|
||||
<div class="heading-container">
|
||||
<div class="carousel-heading">
|
||||
Upcoming Events
|
||||
</div>
|
||||
</div>
|
||||
{% include "training_events_dashboard" %}
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row dashboard-section-courses">
|
||||
<div class="col-xs-12">
|
||||
{% if courses_in_progress %}
|
||||
{% include 'in-progress-carousel' %}
|
||||
{% endif %}
|
||||
{% if getting_started_courses %}
|
||||
{% include 'getting-started-carousel' %}
|
||||
{% endif %}
|
||||
|
||||
Reference in New Issue
Block a user