Datasnipper, Skuid, and Anthology
This commit is contained in:
@ -33,6 +33,9 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
{% include "header" %}
|
{% include "header" %}
|
||||||
|
<div class="mobile-subnav">
|
||||||
|
{% include "sub_navigation" %}
|
||||||
|
</div>
|
||||||
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
|
{% include "course_version_outdated_alert", courses: courses.in_catalog %}
|
||||||
|
|
||||||
<div class="np-homepage-hero">
|
<div class="np-homepage-hero">
|
||||||
@ -53,9 +56,6 @@
|
|||||||
|
|
||||||
{% comment %} {% include "browse_by_product" %} {% endcomment %}
|
{% comment %} {% include "browse_by_product" %} {% endcomment %}
|
||||||
|
|
||||||
<div class="mobile-subnav" style="margin: -24px -20px 16px;">
|
|
||||||
{% include "sub_navigation" %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="np-catalog-header-wrapper catalog-header-wrapper">
|
<div class="np-catalog-header-wrapper catalog-header-wrapper">
|
||||||
|
|
||||||
@ -332,10 +332,6 @@
|
|||||||
margin-top: none;
|
margin-top: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile-subnav{
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search-and-filter-component{
|
.search-and-filter-component{
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
|
|||||||
@ -0,0 +1,15 @@
|
|||||||
|
<div class="np-learning-paths-resources">
|
||||||
|
{% if items.any? %}
|
||||||
|
{% assign sorted_items = items | reverse %}
|
||||||
|
{% for learning_path in sorted_items %}
|
||||||
|
{% include "cards_learning_path" with learning_path %}
|
||||||
|
{% endfor %}
|
||||||
|
{% else %}
|
||||||
|
<div class="np-learning-paths-resources-container">
|
||||||
|
<div class="np-zero-state-text">
|
||||||
|
{% t .empty %}
|
||||||
|
</div>
|
||||||
|
<img class="np-zero-state-learning-paths" alt="{% t .empty %}" />
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
@ -56,7 +56,7 @@ $(document).ready(function(){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@ -4,7 +4,7 @@ from pathlib import Path
|
|||||||
import Apikeys
|
import Apikeys
|
||||||
import os
|
import os
|
||||||
|
|
||||||
basefile = "/Users/normrasmussen/Downloads/mizuno-may-completions.csv"
|
basefile = "/Users/normrasmussen/Downloads/mizuno-june-completions.csv"
|
||||||
api_key = Apikeys.MIZUNO
|
api_key = Apikeys.MIZUNO
|
||||||
uuid_url = "https://api.northpass.com/v2/people?filter[email][eq]="
|
uuid_url = "https://api.northpass.com/v2/people?filter[email][eq]="
|
||||||
prop_url = "https://api.northpass.com/v2/properties/people/"
|
prop_url = "https://api.northpass.com/v2/properties/people/"
|
||||||
@ -51,7 +51,7 @@ def load_file(basefile):
|
|||||||
completions = completions[completions["userid"] != "0"]
|
completions = completions[completions["userid"] != "0"]
|
||||||
# completions = completions.iloc[:, 0:]
|
# completions = completions.iloc[:, 0:]
|
||||||
completions.to_csv(
|
completions.to_csv(
|
||||||
"/Users/normrasmussen/Downloads/Mizuno-May2024-with-PGAID.csv",
|
"/Users/normrasmussen/Downloads/Mizuno-June2024-with-PGAID.csv",
|
||||||
index=False,
|
index=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
4
Todos.md
4
Todos.md
@ -356,3 +356,7 @@ message](https://northpasshq.slack.com/archives/C04RER4PH09/p1709147957374999?th
|
|||||||
|
|
||||||
- [ ] Walmart - Add visuals to instructions for single activity
|
- [ ] Walmart - Add visuals to instructions for single activity
|
||||||
- [X] Walmart - Change accordion in video activities to new accordion.
|
- [X] Walmart - Change accordion in video activities to new accordion.
|
||||||
|
|
||||||
|
## 07-01-2024
|
||||||
|
|
||||||
|
- [ ] Datasnipper, look up webhook ID: 3a33b194-c51c-40aa-98c1-d477f6ca4dda
|
||||||
|
|||||||
Reference in New Issue
Block a user