Skuid templates were changed on a demo. Williams-Sonoma improvements. Script was updated slightly.

This commit is contained in:
Norm Rasmussen
2024-10-15 17:02:33 -04:00
parent acb4e38d79
commit b3b6b4afea
4 changed files with 63 additions and 38 deletions

View File

@ -2,6 +2,7 @@
{% assign new_hire_progress = 0 %}
{% assign day_offset_in_seconds = 864000 %}
{% assign zoom_url = "NULL" %}
{% assign in_center_group = false %}
{% for learning_path in learning_paths.enrolled %}
{% for category in learning_path.categories %}
@ -26,6 +27,15 @@
{% endfor %}
{% endif %}
{% for group in current_person.groups %}
{% if group.name contains " IC " %}
{% assign in_center_group = true %}
{% else %}
{% assign in_center_group = false %}
{% endif %}
{% endfor %}
{% include "header" %}
<main class="np-main np-homepage">
<div class="np-homepage-hero">
@ -45,7 +55,7 @@
{% include "new_hire_homepage"
, zoom_url: zoom_url %}
{% else %}
{% if is_enrolled_in_new_hire_lp == true %}
{% if is_enrolled_in_new_hire_lp == true or in_center_group == true %}
{% if new_hire_progress == 100 %}
<script>
console.log("User new hire progress is 100")
@ -75,7 +85,7 @@
{% endif %}
{% endif %} {% endcomment %}
{% else %}
{% if new_hire_progress > 0 %}
{% if new_hire_progress > 0 or in_center_group == true %}
<script>
window.location.replace("/app/dashboard")
</script>