From fa83a6fc7a17e5e1a0e3b940793a6892cdd64f9f Mon Sep 17 00:00:00 2001 From: Norm Rasmussen Date: Thu, 9 Nov 2023 22:12:16 -0500 Subject: [PATCH] Downloaded G2 templates. Added notes for DataSnipper and Recast. Added API keys and a few other small items. --- .DS_Store | Bin 8196 -> 8196 bytes Custom_Templates/customer_templates/.DS_Store | Bin 26628 -> 26628 bytes .../customer_templates/G2/.DS_Store | Bin 6148 -> 0 bytes .../customer_templates/G2/_badges.html.liquid | 68 ++++++++++++++++ .../customer_templates/G2/_head.html.liquid | 9 +++ .../G2/_header_minimal.html.liquid | 23 ++++++ .../G2/_style_extension_col_5th.html.liquid | 55 +++++++++++++ .../G2/_sub_navigation.html.liquid | 2 + .../G2/auth_url_email.html.liquid | 59 ++++++++++++++ .../G2/auth_url_employee.html.liquid | 59 ++++++++++++++ .../G2/auth_url_phone_number.html.liquid | 40 ++++++++++ .../G2/auth_url_terms.html.liquid | 74 ++++++++++++++++++ .../G2/homepage.html.liquid | 2 +- .../customer_templates/G2/sign_up.html.liquid | 72 +++++++++++++++++ .../customer_templates/G2/styles.css.liquid | 22 ++++++ CustomerNotes/.DS_Store | Bin 18436 -> 18436 bytes CustomerNotes/DataSnipper/DataSnipper.md | 22 ++++++ .../RecastSoftware/RecastSoftware.md | 1 + OtherNotes/PreAppendedURLs.md | 12 +++ Scripts/API_Tests/Apikeys.py | 1 + .../API_Tests/get_courses_and_categories.py | 4 +- 21 files changed, 522 insertions(+), 3 deletions(-) delete mode 100644 Custom_Templates/customer_templates/G2/.DS_Store create mode 100644 Custom_Templates/customer_templates/G2/_badges.html.liquid create mode 100644 Custom_Templates/customer_templates/G2/_header_minimal.html.liquid create mode 100644 Custom_Templates/customer_templates/G2/_style_extension_col_5th.html.liquid create mode 100644 Custom_Templates/customer_templates/G2/auth_url_email.html.liquid create mode 100644 Custom_Templates/customer_templates/G2/auth_url_employee.html.liquid create mode 100644 Custom_Templates/customer_templates/G2/auth_url_phone_number.html.liquid create mode 100644 Custom_Templates/customer_templates/G2/auth_url_terms.html.liquid create mode 100644 Custom_Templates/customer_templates/G2/sign_up.html.liquid create mode 100644 Custom_Templates/customer_templates/G2/styles.css.liquid create mode 100644 OtherNotes/PreAppendedURLs.md diff --git a/.DS_Store b/.DS_Store index 1ce872fe00cb6b193e53590a52ca5078e5931846..05ee83bd1779f737672ee22e19e68d938ea57fd8 100644 GIT binary patch delta 138 zcmZp1XmQw}DiHs`Du#i9frUYjA)O(Up(Hoo#U&{xKM5$t5%_A#a)r91j;Qh}c;yQ+ z41<&Na|?ia82BDvV3;f;s4zK7n0NC=f$dC8+zFG<3Cm6H5awsxHu;pW(&k;lUOWIv C)F)5? delta 138 zcmZp1XmQw}DiDA7t1trt0}F#5LpnnyLrHGFi%U{YeiBfOgQGIdxU}}DBdUA~UipFy z!{Frn+ybB;2EK<343lL96(&as^KRZKu$_sCbL-@D!g7;4g!viQPd+8Aw0W1X7Y_iq C79}YF diff --git a/Custom_Templates/customer_templates/.DS_Store b/Custom_Templates/customer_templates/.DS_Store index e835a410b15b41fedec6e4ac2b127cb2e923b3b2..619957ff336d1845f6fc3b8568c3f6359bbfd19f 100644 GIT binary patch delta 191 zcmZp*L$<6_~sA@O=h-YM->>sAMd0pr$CIG2_Jv;ya delta 307 zcmZp%@S+ljZHjC->QlGqO!~2#}v#T)RBQ7- z(`}rS@966@nogFnmzuoC-hMK_gY@JKM$yUk4w9QS9JKkF9gaAHl|+F(x6I!aNGnX9 n$0$76IY551Ucfs(pg$#rQQXTYJqw~udoz2&Czj2rA>7OWDl}K2 diff --git a/Custom_Templates/customer_templates/G2/.DS_Store b/Custom_Templates/customer_templates/G2/.DS_Store deleted file mode 100644 index 5008ddfcf53c02e82d7eee2e57c38e5672ef89f6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 +
+ {% assign number_of_badges = 0 %} + {% assign max_number_of_badges = 5 %} + {% for course in courses.enrolled %} + {% if number_of_badges < max_number_of_badges %} + {% if course.completed? %} + {% unless course.properties.points == "missing property: points" or course.properties.points == null %} +
+ +
+ {% assign number_of_badges = number_of_badges | plus: 1 %} + {% endunless %} + {% endif %} + {% endif %} + {% endfor %} + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ + +{% if number_of_badges == 0 %} + +{% endif %} + + diff --git a/Custom_Templates/customer_templates/G2/_head.html.liquid b/Custom_Templates/customer_templates/G2/_head.html.liquid index 2c46e4a1..90b55cda 100644 --- a/Custom_Templates/customer_templates/G2/_head.html.liquid +++ b/Custom_Templates/customer_templates/G2/_head.html.liquid @@ -25,6 +25,12 @@ } + +{% include "style_extension_col_5th" %} \ No newline at end of file diff --git a/Custom_Templates/customer_templates/G2/_header_minimal.html.liquid b/Custom_Templates/customer_templates/G2/_header_minimal.html.liquid new file mode 100644 index 00000000..75c21804 --- /dev/null +++ b/Custom_Templates/customer_templates/G2/_header_minimal.html.liquid @@ -0,0 +1,23 @@ +
+ + {% if current_school.logo_url %} + + {% else %} + + {{ current_school.name }} + + {% endif %} + +
+ +{% include "messages" %} + + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/G2/_style_extension_col_5th.html.liquid b/Custom_Templates/customer_templates/G2/_style_extension_col_5th.html.liquid new file mode 100644 index 00000000..c48c8dce --- /dev/null +++ b/Custom_Templates/customer_templates/G2/_style_extension_col_5th.html.liquid @@ -0,0 +1,55 @@ + diff --git a/Custom_Templates/customer_templates/G2/_sub_navigation.html.liquid b/Custom_Templates/customer_templates/G2/_sub_navigation.html.liquid index 13218208..8210f179 100644 --- a/Custom_Templates/customer_templates/G2/_sub_navigation.html.liquid +++ b/Custom_Templates/customer_templates/G2/_sub_navigation.html.liquid @@ -13,3 +13,5 @@ {% endfor %} + +{% include "badges" %} diff --git a/Custom_Templates/customer_templates/G2/auth_url_email.html.liquid b/Custom_Templates/customer_templates/G2/auth_url_email.html.liquid new file mode 100644 index 00000000..953db320 --- /dev/null +++ b/Custom_Templates/customer_templates/G2/auth_url_email.html.liquid @@ -0,0 +1,59 @@ +
+
+ {% include "header_minimal" %} +
+
+ {% form_authenticity_token %} +
+ {% t shared.welcome_to_school, school_name: current_school.name %} +
+
+ {% t .headline, key: current_school.course_vocabulary %} +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/G2/auth_url_employee.html.liquid b/Custom_Templates/customer_templates/G2/auth_url_employee.html.liquid new file mode 100644 index 00000000..b062f800 --- /dev/null +++ b/Custom_Templates/customer_templates/G2/auth_url_employee.html.liquid @@ -0,0 +1,59 @@ +
+
+ {% include "header_minimal" %} +
+
+ {% form_authenticity_token %} +
+ {% t shared.welcome_to_school, school_name: current_school.name %} +
+
+ {% t .headline, key: current_school.course_vocabulary %} +
+
+ + +
+
+ + +
+
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/G2/auth_url_phone_number.html.liquid b/Custom_Templates/customer_templates/G2/auth_url_phone_number.html.liquid new file mode 100644 index 00000000..de17c956 --- /dev/null +++ b/Custom_Templates/customer_templates/G2/auth_url_phone_number.html.liquid @@ -0,0 +1,40 @@ +
+
+ {% include "header_minimal" %} +
+
+
{% t shared.welcome_to_school, school_name: current_school.name %}
+
{% t .headline, key: current_school.course_vocabulary %}
+ {% form_authenticity_token %} +
+ + +
+
+ + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/G2/auth_url_terms.html.liquid b/Custom_Templates/customer_templates/G2/auth_url_terms.html.liquid new file mode 100644 index 00000000..f390b29b --- /dev/null +++ b/Custom_Templates/customer_templates/G2/auth_url_terms.html.liquid @@ -0,0 +1,74 @@ +
+
+ {% include "header_minimal" %} +
+
+
{% t shared.welcome_to_school, school_name: current_school.name %}
+
{% t .headline, key: current_school.course_vocabulary %}
+ {% form_authenticity_token %} +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + + +
+ +
+
+
+
diff --git a/Custom_Templates/customer_templates/G2/homepage.html.liquid b/Custom_Templates/customer_templates/G2/homepage.html.liquid index b9fb71ea..90220ae4 100644 --- a/Custom_Templates/customer_templates/G2/homepage.html.liquid +++ b/Custom_Templates/customer_templates/G2/homepage.html.liquid @@ -21,7 +21,7 @@ {% include "sub_navigation" %} {% include 'courses_catalog' %} {% include 'modal_popup' %} -{% include "footer" %} + {% include "footer" %}