diff --git a/NP_Custom_Templates/customer_templates/.DS_Store b/NP_Custom_Templates/customer_templates/.DS_Store index 4fa3a999..283a1000 100644 Binary files a/NP_Custom_Templates/customer_templates/.DS_Store and b/NP_Custom_Templates/customer_templates/.DS_Store differ diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_account_avatar.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_account_avatar.html.liquid new file mode 100644 index 00000000..cb40a1db --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_account_avatar.html.liquid @@ -0,0 +1,66 @@ +
+

{% t .description %}

+

{% t .requirements %}

+
+ + + + +
+
+ +
+ +
+ +
+
+ +
+
diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_account_form.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_account_form.html.liquid new file mode 100644 index 00000000..1ce4e283 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_account_form.html.liquid @@ -0,0 +1,93 @@ +
+ {% t .header %} +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +{% unless form.options.invite? %} +
+ + +
+{% endunless %} + +{% if form.options.invite? %} +
+ +
+ {% t .terms_of_service %} +
+
+ + +{% endif %} diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_cards_course.html.liquid new file mode 100644 index 00000000..408d0d0f --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_cards_course.html.liquid @@ -0,0 +1,40 @@ +
+
+ {% if course.ribbon %} +
+ {{ course.ribbon }} +
+ {% endif %} + {{ course.name }} +
+

+ {{ course.name }} +

+
+ {{ course.instructor_names }} +
+ +
+
+
diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_cards_learning_path.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_cards_learning_path.html.liquid new file mode 100644 index 00000000..fa498fa0 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_cards_learning_path.html.liquid @@ -0,0 +1,75 @@ +
+
+
+ {{ learning_path.name }} +
+
+ +
{% t shared.learning_path.title %}
+
+ {{ learning_path.items.count }} {% t .items %} +
+
+
+
{% t shared.learning_path.title %}
+ +
+ +
+

+ {{ learning_path.name }} +

+ +
+ {{ learning_path.instructor_names }} +
+ +
+ {{ learning_path.description }} +
+ + {% if learning_path.started? %} +
+ {{ learning_path.progress }}%

Complete

+
+ {% else %} +
+ Not started +
+ {% endif %} + +
+
+
+
+ + +
+
+
+
+
+
+
+
+
diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_course_desktop_view.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_course_desktop_view.html.liquid new file mode 100644 index 00000000..f75467af --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_course_desktop_view.html.liquid @@ -0,0 +1,40 @@ +
+
+ {% include "course_header" %} +
+ {% comment %}
{% endcomment %} +
+
+ {{ course.name }} + {% include "course_description" %} + + {% if course.categories.any? %} +
+ {% include "course_categories" %} +
+ {% endif %} + + {% if course.instructors.any? %} +
+ {% include "course_instructors" %} +
+ {% endif %} + + {% if course.events.any? %} +
+ {% include "course_events" %} +
+ {% endif %} +
+
+
+ {% include "course_progress_and_cta" %} +
+ {% include "course_outline" %} +
+
+
diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_course_header.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_course_header.html.liquid new file mode 100644 index 00000000..45ed8fb4 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_course_header.html.liquid @@ -0,0 +1,20 @@ +
+
+ {{ current_school.course_vocabulary }} +
+ + +
+ + +
+ + + + {{ course.name }} +
+{{ course.name }} diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_course_instructors.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_course_instructors.html.liquid new file mode 100644 index 00000000..44536237 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_course_instructors.html.liquid @@ -0,0 +1,22 @@ +

+ {% t .header %} +

+
+ {% for instructor in course.instructors %} +
+ {{ instructor.name }} +
+
+ {{ instructor.name }} +
+ +
+
+ {% endfor %} +
diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_course_outline.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_course_outline.html.liquid new file mode 100644 index 00000000..e622f1a6 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_course_outline.html.liquid @@ -0,0 +1,48 @@ +
+
+ {% t .header, key: current_school.course_vocabulary %} +
+
+
    + {% for section in course.sections %} +
  1. +
    + {{ section.name }} +
    +
      + {% for activity in section.activities %} + +
    1. + {% if activity.completed? %} + + {% if activity.locked? %} + {% include "course_activity_locked" %} + {% else %} + {% include "course_activity_unlocked", class: "np-course-outline-content-activity-link-completed" %} + {% endif %} +
      + {% else %} + + {% if activity.locked? %} + {% include "course_activity_locked" %} + {% else %} + {% include "course_activity_unlocked", class: "np-course-outline-content-activity-link" %} + {% endif %} +
      + {% endif %} +
    2. + {% endfor %} +
    +
  2. + {% endfor %} +
+
+
+ + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_courses_index.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_courses_index.html.liquid new file mode 100644 index 00000000..33405332 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_courses_index.html.liquid @@ -0,0 +1,18 @@ +{% if courses.enrolled.any? %} +
+ {% for course in courses.enrolled %} + {% if course.properties.language == current_person.properties.language %} +
+ {% include "cards_course" with course %} +
+ {% endif %} + {% endfor %} +
+{% else %} + {% capture message %} + {% t shared.zero_state.courses.index, + key: current_school.course_vocabulary + %} + {% endcapture %} + {% include "courses_zero_state", message: message %} +{% endif %} diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_footer.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_footer.html.liquid new file mode 100644 index 00000000..18597bb4 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_footer.html.liquid @@ -0,0 +1,78 @@ + diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_head.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_head.html.liquid new file mode 100644 index 00000000..88f5a209 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_head.html.liquid @@ -0,0 +1,5 @@ +{% styles default %} +{% styles colors %} +{% styles custom %} + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_header.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_header.html.liquid new file mode 100644 index 00000000..29e623e9 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_header.html.liquid @@ -0,0 +1,303 @@ +
+
+
+ {% if current_person.signed_in? %} + + + {% endif %} +
+ {% if current_school.logo_url %} +

+ + {{ current_school.name }} + +

+ {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +
+ + {% if current_person.signed_in? %} + {% if current_person.properties.language_feature_test == true %} + {% assign current_language = "EN" %} + {% if current_person.properties.language == "English" %} + {% assign current_language = "EN" %} + {% elsif current_person.properties.language == "Spanish" %} + {% assign current_language = "ES" %} + {% endif %} + + {% endif %} + {% endif %} + + {% if current_person.signed_in? %} + +
+ + +
+ {% else %} +
+ {% endif %} + +
+ +
+
+
+
+ +{% include "messages" %} + +{% assign lang = current_person.properties.language %} + +{% case lang %} + {% when "Spanish" %} + {% include "spanish_lang" %} +{% endcase %} + + + + + + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_spanish_lang.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_spanish_lang.html.liquid new file mode 100644 index 00000000..a0a43271 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_spanish_lang.html.liquid @@ -0,0 +1,487 @@ + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/ForceManager/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/_sub_navigation.html.liquid new file mode 100644 index 00000000..d814e519 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/_sub_navigation.html.liquid @@ -0,0 +1,13 @@ + diff --git a/NP_Custom_Templates/customer_templates/ForceManager/course.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/course.html.liquid new file mode 100644 index 00000000..4b1a5ad8 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/course.html.liquid @@ -0,0 +1,28 @@ +{% include "header" %} +
+
+ {% include "course_desktop_view" %} +
+
+ {% include "course_mobile_view" %} +
+
+{% include "footer" %} + + diff --git a/NP_Custom_Templates/customer_templates/ForceManager/courses.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/courses.html.liquid new file mode 100644 index 00000000..07827d6e --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/courses.html.liquid @@ -0,0 +1,11 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% include "sub_navigation" %} +
+
+ {% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %} +
+ + {% include "courses_index", class: "col-xs-12 col-sm-6 col-lg-4 np-stretch-content" %} +
+{% include "footer" %} diff --git a/NP_Custom_Templates/customer_templates/ForceManager/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/dashboard.html.liquid new file mode 100644 index 00000000..720a85e3 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/dashboard.html.liquid @@ -0,0 +1,28 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% include "sub_navigation" %} +
+
+
+ {% if features.learning_paths? %} +
+ {% t shared.learning_paths %} +
+ {% include "learning_paths_index", items: learning_paths.enrolled %} + {% endif %} +
+ {% t shared.course_vocabulary.plural, key: current_school.course_vocabulary %} +
+ {% include "courses_index", class: "col-xs-12 col-sm-6 np-stretch-content" %} +
+ {% if features.training_events? %} +
+
+ {% t .upcoming_events %} +
+ {% include "training_events_dashboard" %} +
+ {% endif %} +
+
+{% include "footer" %} \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/ForceManager/learning_paths.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/learning_paths.html.liquid new file mode 100644 index 00000000..3bff4d35 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/learning_paths.html.liquid @@ -0,0 +1,20 @@ +{% include "header" %} +{% include "sub_navigation" %} +
+
+
+ {% t shared.learning_paths %} +
+
+ {% include "learning_paths_index", items: learning_paths.available %} + +
+{% include "footer" %} + + diff --git a/NP_Custom_Templates/customer_templates/ForceManager/training_events.html.liquid b/NP_Custom_Templates/customer_templates/ForceManager/training_events.html.liquid new file mode 100644 index 00000000..239ef9e5 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/ForceManager/training_events.html.liquid @@ -0,0 +1,19 @@ +{% include "header" %} +{% include "sub_navigation" %} +
+
+
+
+ {% t .title %} +
+
+ {% t .subtitle %} +
+
+
+ {% include "training_events_filter" %} +
+
+ {% include "training_events_index" %} +
+{% include "footer" %} diff --git a/NP_Custom_Templates/templates/.._account_avatar.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._account_avatar.html 2.liquid.icloud deleted file mode 100644 index 6785697f..00000000 Binary files a/NP_Custom_Templates/templates/.._account_avatar.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._account_desktop_view.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._account_desktop_view.html 2.liquid.icloud deleted file mode 100644 index 02ce2f1f..00000000 Binary files a/NP_Custom_Templates/templates/.._account_desktop_view.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._account_form.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._account_form.html 2.liquid.icloud deleted file mode 100644 index 7442ac6a..00000000 Binary files a/NP_Custom_Templates/templates/.._account_form.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._account_mobile_view.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._account_mobile_view.html 2.liquid.icloud deleted file mode 100644 index c487521f..00000000 Binary files a/NP_Custom_Templates/templates/.._account_mobile_view.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._cards_course.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._cards_course.html 2.liquid.icloud deleted file mode 100644 index eae1f900..00000000 Binary files a/NP_Custom_Templates/templates/.._cards_course.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._cards_learning_path.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._cards_learning_path.html 2.liquid.icloud deleted file mode 100644 index a055eac8..00000000 Binary files a/NP_Custom_Templates/templates/.._cards_learning_path.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._cards_training_event.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._cards_training_event.html 2.liquid.icloud deleted file mode 100644 index 69bf3436..00000000 Binary files a/NP_Custom_Templates/templates/.._cards_training_event.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_activity_locked.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_activity_locked.html 2.liquid.icloud deleted file mode 100644 index 152dbafe..00000000 Binary files a/NP_Custom_Templates/templates/.._course_activity_locked.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_activity_unlocked.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_activity_unlocked.html 2.liquid.icloud deleted file mode 100644 index 0cfc751c..00000000 Binary files a/NP_Custom_Templates/templates/.._course_activity_unlocked.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_categories.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_categories.html 2.liquid.icloud deleted file mode 100644 index 75011b04..00000000 Binary files a/NP_Custom_Templates/templates/.._course_categories.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_description.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_description.html 2.liquid.icloud deleted file mode 100644 index 2b2218bb..00000000 Binary files a/NP_Custom_Templates/templates/.._course_description.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_desktop_view.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_desktop_view.html 2.liquid.icloud deleted file mode 100644 index 7e5d4235..00000000 Binary files a/NP_Custom_Templates/templates/.._course_desktop_view.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_events.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_events.html 2.liquid.icloud deleted file mode 100644 index ee7d4976..00000000 Binary files a/NP_Custom_Templates/templates/.._course_events.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_header.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_header.html 2.liquid.icloud deleted file mode 100644 index bc89bffd..00000000 Binary files a/NP_Custom_Templates/templates/.._course_header.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_instructors.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_instructors.html 2.liquid.icloud deleted file mode 100644 index 7752a3d6..00000000 Binary files a/NP_Custom_Templates/templates/.._course_instructors.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_mobile_view.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_mobile_view.html 2.liquid.icloud deleted file mode 100644 index e50f55f5..00000000 Binary files a/NP_Custom_Templates/templates/.._course_mobile_view.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._course_progress_and_cta.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._course_progress_and_cta.html 2.liquid.icloud deleted file mode 100644 index d76a7748..00000000 Binary files a/NP_Custom_Templates/templates/.._course_progress_and_cta.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._courses_catalog.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._courses_catalog.html 2.liquid.icloud deleted file mode 100644 index e3698caa..00000000 Binary files a/NP_Custom_Templates/templates/.._courses_catalog.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._courses_index.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._courses_index.html 2.liquid.icloud deleted file mode 100644 index 7c225bca..00000000 Binary files a/NP_Custom_Templates/templates/.._courses_index.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._courses_zero_state.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._courses_zero_state.html 2.liquid.icloud deleted file mode 100644 index 16e7a058..00000000 Binary files a/NP_Custom_Templates/templates/.._courses_zero_state.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._filter_checkbox.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._filter_checkbox.html 2.liquid.icloud deleted file mode 100644 index abdc7ae4..00000000 Binary files a/NP_Custom_Templates/templates/.._filter_checkbox.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._filter_dropdown.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._filter_dropdown.html 2.liquid.icloud deleted file mode 100644 index 6dcef765..00000000 Binary files a/NP_Custom_Templates/templates/.._filter_dropdown.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._filter_select.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._filter_select.html 2.liquid.icloud deleted file mode 100644 index bac095bb..00000000 Binary files a/NP_Custom_Templates/templates/.._filter_select.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._footer.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._footer.html 2.liquid.icloud deleted file mode 100644 index f4418624..00000000 Binary files a/NP_Custom_Templates/templates/.._footer.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._head.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._head.html 2.liquid.icloud deleted file mode 100644 index 04709ec4..00000000 Binary files a/NP_Custom_Templates/templates/.._head.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._header.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._header.html 2.liquid.icloud deleted file mode 100644 index 23a44d6a..00000000 Binary files a/NP_Custom_Templates/templates/.._header.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._header_minimal.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._header_minimal.html 2.liquid.icloud deleted file mode 100644 index edaefedd..00000000 Binary files a/NP_Custom_Templates/templates/.._header_minimal.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._learning_path_course.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._learning_path_course.html 2.liquid.icloud deleted file mode 100644 index fba54994..00000000 Binary files a/NP_Custom_Templates/templates/.._learning_path_course.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._learning_path_description.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._learning_path_description.html 2.liquid.icloud deleted file mode 100644 index f9e501dc..00000000 Binary files a/NP_Custom_Templates/templates/.._learning_path_description.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._learning_path_desktop_view.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._learning_path_desktop_view.html 2.liquid.icloud deleted file mode 100644 index cd9e4c5e..00000000 Binary files a/NP_Custom_Templates/templates/.._learning_path_desktop_view.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._learning_path_instructors.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._learning_path_instructors.html 2.liquid.icloud deleted file mode 100644 index cebee38c..00000000 Binary files a/NP_Custom_Templates/templates/.._learning_path_instructors.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._learning_path_mobile_view.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._learning_path_mobile_view.html 2.liquid.icloud deleted file mode 100644 index 191954b9..00000000 Binary files a/NP_Custom_Templates/templates/.._learning_path_mobile_view.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._learning_path_outline.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._learning_path_outline.html 2.liquid.icloud deleted file mode 100644 index 954a0d7a..00000000 Binary files a/NP_Custom_Templates/templates/.._learning_path_outline.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._learning_path_progress_and_cta.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._learning_path_progress_and_cta.html 2.liquid.icloud deleted file mode 100644 index 21f4e94b..00000000 Binary files a/NP_Custom_Templates/templates/.._learning_path_progress_and_cta.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._learning_path_training_session.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._learning_path_training_session.html 2.liquid.icloud deleted file mode 100644 index 614ca7b9..00000000 Binary files a/NP_Custom_Templates/templates/.._learning_path_training_session.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._learning_paths_index.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._learning_paths_index.html 2.liquid.icloud deleted file mode 100644 index 4875f20c..00000000 Binary files a/NP_Custom_Templates/templates/.._learning_paths_index.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._messages.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._messages.html 2.liquid.icloud deleted file mode 100644 index e8cfb2d2..00000000 Binary files a/NP_Custom_Templates/templates/.._messages.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._search_result.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._search_result.html 2.liquid.icloud deleted file mode 100644 index 8a33d0d1..00000000 Binary files a/NP_Custom_Templates/templates/.._search_result.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._search_zero_state.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._search_zero_state.html 2.liquid.icloud deleted file mode 100644 index e4c1ac3e..00000000 Binary files a/NP_Custom_Templates/templates/.._search_zero_state.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._sub_navigation.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._sub_navigation.html 2.liquid.icloud deleted file mode 100644 index 58c454d6..00000000 Binary files a/NP_Custom_Templates/templates/.._sub_navigation.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_events_dashboard.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_events_dashboard.html 2.liquid.icloud deleted file mode 100644 index 979a2c35..00000000 Binary files a/NP_Custom_Templates/templates/.._training_events_dashboard.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_events_filter.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_events_filter.html 2.liquid.icloud deleted file mode 100644 index 9f2d4d35..00000000 Binary files a/NP_Custom_Templates/templates/.._training_events_filter.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_events_index.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_events_index.html 2.liquid.icloud deleted file mode 100644 index 3802ee8f..00000000 Binary files a/NP_Custom_Templates/templates/.._training_events_index.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_events_zero_state.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_events_zero_state.html 2.liquid.icloud deleted file mode 100644 index 1005703c..00000000 Binary files a/NP_Custom_Templates/templates/.._training_events_zero_state.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_session_cta.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_session_cta.html 2.liquid.icloud deleted file mode 100644 index 04b10809..00000000 Binary files a/NP_Custom_Templates/templates/.._training_session_cta.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_session_date.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_session_date.html 2.liquid.icloud deleted file mode 100644 index 86645883..00000000 Binary files a/NP_Custom_Templates/templates/.._training_session_date.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_session_description.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_session_description.html 2.liquid.icloud deleted file mode 100644 index 16081089..00000000 Binary files a/NP_Custom_Templates/templates/.._training_session_description.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_session_desktop_view.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_session_desktop_view.html 2.liquid.icloud deleted file mode 100644 index 70c83b02..00000000 Binary files a/NP_Custom_Templates/templates/.._training_session_desktop_view.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_session_details.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_session_details.html 2.liquid.icloud deleted file mode 100644 index 85db28c8..00000000 Binary files a/NP_Custom_Templates/templates/.._training_session_details.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_session_header.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_session_header.html 2.liquid.icloud deleted file mode 100644 index 3bc0e508..00000000 Binary files a/NP_Custom_Templates/templates/.._training_session_header.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_session_mobile_view.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_session_mobile_view.html 2.liquid.icloud deleted file mode 100644 index c7e81331..00000000 Binary files a/NP_Custom_Templates/templates/.._training_session_mobile_view.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_session_more_sessions.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_session_more_sessions.html 2.liquid.icloud deleted file mode 100644 index 6f524cc0..00000000 Binary files a/NP_Custom_Templates/templates/.._training_session_more_sessions.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.._training_session_tile.html 2.liquid.icloud b/NP_Custom_Templates/templates/.._training_session_tile.html 2.liquid.icloud deleted file mode 100644 index ecd57d60..00000000 Binary files a/NP_Custom_Templates/templates/.._training_session_tile.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.DS_Store b/NP_Custom_Templates/templates/.DS_Store index 5789844e..db3c766b 100644 Binary files a/NP_Custom_Templates/templates/.DS_Store and b/NP_Custom_Templates/templates/.DS_Store differ diff --git a/NP_Custom_Templates/templates/.account.html 2.liquid.icloud b/NP_Custom_Templates/templates/.account.html 2.liquid.icloud deleted file mode 100644 index 7937805b..00000000 Binary files a/NP_Custom_Templates/templates/.account.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.auth_url_email.html 2.liquid.icloud b/NP_Custom_Templates/templates/.auth_url_email.html 2.liquid.icloud deleted file mode 100644 index 0c7492c5..00000000 Binary files a/NP_Custom_Templates/templates/.auth_url_email.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.auth_url_employee.html 2.liquid.icloud b/NP_Custom_Templates/templates/.auth_url_employee.html 2.liquid.icloud deleted file mode 100644 index 703cd077..00000000 Binary files a/NP_Custom_Templates/templates/.auth_url_employee.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.auth_url_phone_number.html 2.liquid.icloud b/NP_Custom_Templates/templates/.auth_url_phone_number.html 2.liquid.icloud deleted file mode 100644 index a7df93d2..00000000 Binary files a/NP_Custom_Templates/templates/.auth_url_phone_number.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.auth_url_terms.html 2.liquid.icloud b/NP_Custom_Templates/templates/.auth_url_terms.html 2.liquid.icloud deleted file mode 100644 index fb48ca20..00000000 Binary files a/NP_Custom_Templates/templates/.auth_url_terms.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.catalog.html 2.liquid.icloud b/NP_Custom_Templates/templates/.catalog.html 2.liquid.icloud deleted file mode 100644 index 74ab7142..00000000 Binary files a/NP_Custom_Templates/templates/.catalog.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.course.html 2.liquid.icloud b/NP_Custom_Templates/templates/.course.html 2.liquid.icloud deleted file mode 100644 index ad088cb4..00000000 Binary files a/NP_Custom_Templates/templates/.course.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.courses.html 2.liquid.icloud b/NP_Custom_Templates/templates/.courses.html 2.liquid.icloud deleted file mode 100644 index 15344396..00000000 Binary files a/NP_Custom_Templates/templates/.courses.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.dashboard.html 2.liquid.icloud b/NP_Custom_Templates/templates/.dashboard.html 2.liquid.icloud deleted file mode 100644 index c9fd67dc..00000000 Binary files a/NP_Custom_Templates/templates/.dashboard.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.forgot_password.html 2.liquid.icloud b/NP_Custom_Templates/templates/.forgot_password.html 2.liquid.icloud deleted file mode 100644 index 4f9724b3..00000000 Binary files a/NP_Custom_Templates/templates/.forgot_password.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.homepage.html 2.liquid.icloud b/NP_Custom_Templates/templates/.homepage.html 2.liquid.icloud deleted file mode 100644 index 51c54e3b..00000000 Binary files a/NP_Custom_Templates/templates/.homepage.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.learning_path.html 2.liquid.icloud b/NP_Custom_Templates/templates/.learning_path.html 2.liquid.icloud deleted file mode 100644 index a4c061f6..00000000 Binary files a/NP_Custom_Templates/templates/.learning_path.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.learning_paths.html 2.liquid.icloud b/NP_Custom_Templates/templates/.learning_paths.html 2.liquid.icloud deleted file mode 100644 index 8b02cb5d..00000000 Binary files a/NP_Custom_Templates/templates/.learning_paths.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.login.html 2.liquid.icloud b/NP_Custom_Templates/templates/.login.html 2.liquid.icloud deleted file mode 100644 index 4b42794d..00000000 Binary files a/NP_Custom_Templates/templates/.login.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.master.html 2.liquid.icloud b/NP_Custom_Templates/templates/.master.html 2.liquid.icloud deleted file mode 100644 index 6b47c2ca..00000000 Binary files a/NP_Custom_Templates/templates/.master.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.reset_password.html 2.liquid.icloud b/NP_Custom_Templates/templates/.reset_password.html 2.liquid.icloud deleted file mode 100644 index 838e38ec..00000000 Binary files a/NP_Custom_Templates/templates/.reset_password.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.search.html 2.liquid.icloud b/NP_Custom_Templates/templates/.search.html 2.liquid.icloud deleted file mode 100644 index 9eb221bf..00000000 Binary files a/NP_Custom_Templates/templates/.search.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.sign_up.html 2.liquid.icloud b/NP_Custom_Templates/templates/.sign_up.html 2.liquid.icloud deleted file mode 100644 index b1227633..00000000 Binary files a/NP_Custom_Templates/templates/.sign_up.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.styles.css 2.liquid.icloud b/NP_Custom_Templates/templates/.styles.css 2.liquid.icloud deleted file mode 100644 index 51f75c35..00000000 Binary files a/NP_Custom_Templates/templates/.styles.css 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.training_events.html 2.liquid.icloud b/NP_Custom_Templates/templates/.training_events.html 2.liquid.icloud deleted file mode 100644 index 166b9362..00000000 Binary files a/NP_Custom_Templates/templates/.training_events.html 2.liquid.icloud and /dev/null differ diff --git a/NP_Custom_Templates/templates/.training_session.html 2.liquid.icloud b/NP_Custom_Templates/templates/.training_session.html 2.liquid.icloud deleted file mode 100644 index d391622f..00000000 Binary files a/NP_Custom_Templates/templates/.training_session.html 2.liquid.icloud and /dev/null differ diff --git a/TodoList/Pages/Accounts.razor b/TodoList/Pages/Accounts.razor index bd4646af..5c5d8e70 100644 --- a/TodoList/Pages/Accounts.razor +++ b/TodoList/Pages/Accounts.razor @@ -48,10 +48,11 @@ @code { - public string? TaskNote; + //var accounts = new List>> +// accounts list +//key: hubspot, value: key: call them, value: call today + public var accounts = new List>>(); private string? newAccount; - private List accounts = new List(); - private Dictionary tasks = new(); private string? newTask; private bool accountboxvalue { get; set; } @@ -63,24 +64,21 @@ { if (!string.IsNullOrWhiteSpace(newAccount)) { - Account accounts = new Account(AccountName, tasks, LastContacted); - accounts.Add(accounts); - Account newAccount = new Account{newAccount}; - accounts.Add(new Account { AccountName = newAccount }); + accounts.Add(new KeyValuePair>(newAccount())); newAccount = string.Empty; } } private void addTask() { { - if (!string.IsNullOrWhiteSpace(newTask)) - { - if (Account.Equals(accountboxvalue)); + string key = "accountboxvalue"; + bool keyExists = KeyValuePair.ContainsKey(key); + if (keyExists) { + accounts.Add(new KeyValuePair