Added Front. A few script changes. Jupyter notebooks practice for customer analysis.

This commit is contained in:
Norm Rasmussen
2023-04-12 08:36:25 -04:00
parent 78063b0b88
commit 1a2c86d665
45 changed files with 3834 additions and 187 deletions

View File

@ -12,16 +12,17 @@
{% assign persongroup = current_person.groups.last.name | split: "-" %}
{% endif %}
<p class="np-resource-title" style="font-size: 1.5rem; font-weight: 600; margin-bottom: -1rem;">Hi {{current_person.first_name}}! &#128075; {% if current_person.groups.size > 0 %} {{ persongroup | slice: 1 }} {% endif %}</p>
<div> <p style="font-weight: 500;">Please complete all your 2023 Compliance Courses.</p></div>
<div> <p style="font-weight: 500;">Please complete all your 2023 Compliance Courses.</p>
<p style="font-weight: 300;">Click the drop down box below to view courses that are in progress or
complete.</p></div>
</div>
</div>
</div>
<div class="flex-row-button-container">
</div>
{% include "my_courses_filter" %}
<div class="row np-flex-center">
<div class="col-xs-12">
<div class="col-xs-12 dashboard-courses">
{% comment %}{% if features.learning_paths? %}
<div class="np-dashboard-resources-title">
{% t shared.learning_paths %}
@ -31,7 +32,8 @@
<div class="np-dashboard-resources-title">
{% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %}
</div>{% endcomment %}
{% include "courses_index", class: "col-xs-12 col-sm-6 np-stretch-content" %}
{%- comment -%} {% include "courses_index", class: "col-xs-12 col-sm-6 np-stretch-content" %} {%- endcomment -%}
{% include "enrolled_courses_index", class: "col-xs-12 col-sm-6 np-stretch-content" %}
</div>
{% comment %}{% if features.training_events? %}
<div class="np-grid-spacing col-xs-12 col-sm-4">
@ -44,3 +46,9 @@
</div>
</main>
{% include "footer" %}
<script>
window.addEventListener('DOMContentLoaded', (event) => {
document.querySelector('.my-courses-filters').style.removeProperty('display');
})
</script>