Added some SPS Updates
This commit is contained in:
@ -0,0 +1,25 @@
|
||||
<div class='np-card'>
|
||||
<div class='event-header'>
|
||||
<div class='event-header-left'>
|
||||
<i class="far fa-thin fa-users"></i>
|
||||
</div>
|
||||
<div class='event-header-right'>
|
||||
<div class='event-header-right-type'>
|
||||
Other Event
|
||||
</div>
|
||||
<div class='event-header-right-title'>
|
||||
{{ title }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class='other-event-sessions'>
|
||||
<div class='event-session'>
|
||||
<div class='event-session-number'>
|
||||
Click here for more information:
|
||||
</div>
|
||||
<a class='event-session-date' href="{{ link }}">
|
||||
{{ link }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -34,88 +34,3 @@
|
||||
</div>
|
||||
<a class='event-button' href="{% route training_session, id: training_event.sessions.first.id %}">Select</a>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.row .np-card {
|
||||
border: 1px solid #ccc;
|
||||
padding: 35px;
|
||||
}
|
||||
.event-header {
|
||||
display: flex;
|
||||
padding-bottom: 25px;
|
||||
height: 115px;
|
||||
}
|
||||
.event-header-left {
|
||||
margin-right: 20px;
|
||||
}
|
||||
.fa-users {
|
||||
font-size: 44px;
|
||||
font-weight: 300;
|
||||
}
|
||||
.event-header-right-type {
|
||||
color: #3b3f3d;
|
||||
font-size: 18px;
|
||||
}
|
||||
.event-header-right-title {
|
||||
color: #3b3f3d;
|
||||
font-size: 26px;
|
||||
font-weight: 600;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.event-sessions {
|
||||
height: 160px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.event-session {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.event-session-number {
|
||||
color: #606060;
|
||||
font-weight: bold;
|
||||
font-size: 18px;
|
||||
}
|
||||
.event-session-date {
|
||||
color: #9b4b87;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
}
|
||||
.event-session-date:hover {
|
||||
color: #4b2346;
|
||||
}
|
||||
.event-additional-sessions {
|
||||
color: #9b4b87;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.event-additional-sessions:hover {
|
||||
color: #4b2346;
|
||||
}
|
||||
.event-button {
|
||||
background: #9b4b87;
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
padding: 10px 20px;
|
||||
line-height: 39px;
|
||||
min-height: 30px;
|
||||
text-align: center;
|
||||
margin-bottom: -10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.event-button:hover {
|
||||
background: #4b2346
|
||||
}
|
||||
@media screen and (max-width: 768px) {
|
||||
.row .np-card {
|
||||
width: 80%;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 450px) {
|
||||
.row .np-card {
|
||||
width: 90%;
|
||||
padding: 25px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -0,0 +1,13 @@
|
||||
<div class="np-dashboard-resources">
|
||||
<div class="row row-with-thumbnails">
|
||||
<div class="col-xs-12 col-sm-6 col-lg-4 event-card">
|
||||
{% include "cards_other_event" title: "Test Webinar 1", link: "https://google.com" %}
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-6 col-lg-4 event-card">
|
||||
{% include "cards_other_event" title: "Test Webinar 2", link: "https://google.com" %}
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-6 col-lg-4 event-card">
|
||||
{% include "cards_other_event" title: "Test Webinar 3", link: "https://google.com" %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@ -15,12 +15,108 @@
|
||||
</div>
|
||||
</div>
|
||||
{% include "training_events_index" %}
|
||||
|
||||
{%- comment -%} <div class="row">
|
||||
<div class="col-xs-12 col-sm-12">
|
||||
<div class="np-resource-title" style='font-size: 2rem;'>
|
||||
Other Training Events
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% include "other_events_index" %} {%- endcomment -%}
|
||||
</main>
|
||||
{% include "footer" %}
|
||||
|
||||
<style>
|
||||
.other-event-sessions {
|
||||
height: 65px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.np-training-events {
|
||||
background: white;
|
||||
}
|
||||
|
||||
.row .np-card {
|
||||
border: 1px solid #ccc;
|
||||
padding: 35px;
|
||||
}
|
||||
.event-header {
|
||||
display: flex;
|
||||
padding-bottom: 25px;
|
||||
height: 115px;
|
||||
}
|
||||
.event-header-left {
|
||||
margin-right: 20px;
|
||||
}
|
||||
.fa-users {
|
||||
font-size: 44px;
|
||||
font-weight: 300;
|
||||
}
|
||||
.event-header-right-type {
|
||||
color: #3b3f3d;
|
||||
font-size: 18px;
|
||||
}
|
||||
.event-header-right-title {
|
||||
color: #3b3f3d;
|
||||
font-size: 26px;
|
||||
font-weight: 600;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.event-sessions {
|
||||
height: 160px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
.event-session {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.event-session-number {
|
||||
color: #606060;
|
||||
font-weight: bold;
|
||||
font-size: 18px;
|
||||
}
|
||||
.event-session-date {
|
||||
color: #9b4b87;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
}
|
||||
.event-session-date:hover {
|
||||
color: #4b2346;
|
||||
}
|
||||
.event-additional-sessions {
|
||||
color: #9b4b87;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.event-additional-sessions:hover {
|
||||
color: #4b2346;
|
||||
}
|
||||
.event-button {
|
||||
background: #9b4b87;
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
padding: 10px 20px;
|
||||
line-height: 39px;
|
||||
min-height: 30px;
|
||||
text-align: center;
|
||||
margin-bottom: -10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
.event-button:hover {
|
||||
background: #4b2346
|
||||
}
|
||||
@media screen and (max-width: 768px) {
|
||||
.row .np-card {
|
||||
width: 80%;
|
||||
}
|
||||
}
|
||||
@media screen and (max-width: 450px) {
|
||||
.row .np-card {
|
||||
width: 90%;
|
||||
padding: 25px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -170,7 +170,6 @@ Molly and Taylor want more control of the process. They are trying to remove Fou
|
||||
1. People attest that they are seeing clients
|
||||
2. Get Access to Compliance Courses
|
||||
|
||||
|
||||
## 11/22/2022
|
||||
### Weekly Sync
|
||||
Angel/Jenna meeting with Integrations person. Follow up next week.
|
||||
|
||||
58
Scripts/Skuid_LPs/05Modules_Completed.csv
Normal file
58
Scripts/Skuid_LPs/05Modules_Completed.csv
Normal file
@ -0,0 +1,58 @@
|
||||
Email,Course Name
|
||||
achopra@mindzcloud.com,6
|
||||
akash.singh10@q2ebanking.com,6
|
||||
amehare@mindzcloud.com,6
|
||||
amulay@mindzcloud.com,6
|
||||
ankushsomani09@gmail.com,6
|
||||
ashwini.shwinibr@q2ebanking.com,6
|
||||
atsnead@gmail.com,6
|
||||
bbendick@arizona.edu,6
|
||||
bhanu.govind@mindtree.com,6
|
||||
cdeshmukh@mindzcloud.com,6
|
||||
chris@skuid.com,6
|
||||
dan.coates@skuid.com,6
|
||||
delete133@skuid.com,6
|
||||
delete909875@skuid.com,6
|
||||
dghosh@mindzcloud.com,6
|
||||
diana.sandefur@amerisbank.com,6
|
||||
ecaterina.catargiu@dell.com,6
|
||||
evan.ratzlaff@skuid.com,6
|
||||
evan.roth@skuid.com,6
|
||||
ezra@opentent.com,6
|
||||
jacob@skuid.com,6
|
||||
jared.carr@mrisoftware.com,6
|
||||
jveeramreddy@arizona.edu,6
|
||||
ken.martinez@skuid.com,6
|
||||
kimsueh@gmail.com,6
|
||||
kotapatisindhusha@gmail.com,6
|
||||
lynette@cues.org,6
|
||||
maria.siwela@liberty.co.za,6
|
||||
mattia.donello@gmail.com,6
|
||||
naga@capitallynk.com,6
|
||||
nick@skuid.com,6
|
||||
nimish.gupta3@q2.com,6
|
||||
nivetha.nagarajan@dell.com,6
|
||||
pat@mblazonry.com,6
|
||||
pclee1212@gmail.com,6
|
||||
pjogdand@mindzcloud.com,6
|
||||
pooja.chavre@mindtree.com,6
|
||||
priyanka.patro@q2.com,6
|
||||
rajesh.gaikwad@mindtree.com,6
|
||||
remon.samuel@icloud.com,6
|
||||
renee.miller@amerisbank.com,6
|
||||
rich.slack@gochrysalis.com,6
|
||||
rob@skuid.com,6
|
||||
roly.singh@cj.com,6
|
||||
rpanicker@mindzcloud.com,6
|
||||
ryan.parmenter@skuid.com,6
|
||||
sampan.b@q2.com,6
|
||||
sfarooqui@mindzcloud.com,6
|
||||
skuckreja@mindzcloud.com,6
|
||||
smahure@mindzcloud.com,6
|
||||
snigdha_jha@dell.com,6
|
||||
sowmya.priyav@q2ebanking.com,6
|
||||
stephen.fausel@skuid.com,6
|
||||
teik.hoe.teoh@dell.com,6
|
||||
uday1341.uy@gmail.com,6
|
||||
varelajacob@outlook.com,6
|
||||
vpawde@mindzcloud.com,6
|
||||
|
@ -9,19 +9,22 @@ def mainFunc(basecsv):
|
||||
index_col=False,
|
||||
)
|
||||
readData.drop_duplicates(subset='Course Name', keep="first")
|
||||
if readData.loc[readData['Course Name'].isin([
|
||||
'Get Started with Models - Level 1',
|
||||
'Configure Model Fields - Level 1',
|
||||
'Configure Model Conditions - Level 1',
|
||||
'Configure Model Actions - Level 1',
|
||||
'Manage Models - Level 1',
|
||||
'Intro to UI Only Fields - Level 1'])]:
|
||||
extractedList = readData.loc[readData['Email'].tolist()]
|
||||
fourOccs = Counter(extractedList)
|
||||
finalNames = []
|
||||
for name, occurences in fourOccs.items():
|
||||
if occurences == 6:
|
||||
finalNames.append(name)
|
||||
emailGroups = readData.groupby("Email")["Course Name"].nunique()
|
||||
print(emailGroups)
|
||||
emailGroups = emailGroups.to_csv('/Users/normrasmussen/Documents/Northpass/Scripts/Skuid_LPs/outtest.csv')
|
||||
#if readData.loc[readData['Course Name'].isin([
|
||||
# 'Get Started with Models - Level 1',
|
||||
# 'Configure Model Fields - Level 1',
|
||||
# 'Configure Model Conditions - Level 1',
|
||||
# 'Configure Model Actions - Level 1',
|
||||
# 'Manage Models - Level 1',
|
||||
# 'Intro to UI Only Fields - Level 1'])]:
|
||||
# extractedList = readData.loc[readData['Email'].tolist()]
|
||||
# fourOccs = Counter(extractedList)
|
||||
# finalNames = []
|
||||
# for name, occurences in fourOccs.items():
|
||||
# if occurences == 6:
|
||||
# finalNames.append(name)
|
||||
|
||||
if __name__ == "__main__":
|
||||
mainFunc(basecsv)
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user