From 9ea7bad737803386784bb8fc7f716f5c39acb04e Mon Sep 17 00:00:00 2001 From: Norm Rasmussen Date: Wed, 25 May 2022 22:12:56 -0400 Subject: [PATCH] medisoft customizations --- .../customer_templates/.DS_Store | Bin 6148 -> 6148 bytes .../Medisoft/_cards_course.html.liquid | 34 ++++++++++++ .../Medisoft/_guides_index.html.liquid | 20 +++++++ .../Medisoft/_sub_navigation.html.liquid | 11 ++++ .../Medisoft/_sub_navigation_item.html.liquid | 15 +++++ .../Medisoft/catalog.html.liquid | 23 ++++++++ .../Medisoft/dashboard.html.liquid | 28 ++++++++++ .../Medisoft/homepage.html.liquid | 52 ++++++++++++++++++ .../Medisoft/learning_paths.html.liquid | 14 +++++ .../Medisoft/training_events.html.liquid | 19 +++++++ .../Medisoft/user-guides.html.liquid | 12 ++++ NP_Custom_Templates/templates/.DS_Store | Bin 0 -> 38916 bytes .../templates/_account_form.html.liquid | 50 ++++++++++++----- .../templates/_cards_course.html.liquid | 6 +- .../_cards_learning_path.html.liquid | 10 ++-- .../templates/_course_header.html.liquid | 2 +- .../templates/_course_outline.html.liquid | 2 +- ..._course_version_outdated_alert.html.liquid | 7 +++ ..._course_version_outdated_popup.html.liquid | 33 +++++++++++ .../templates/_header.html.liquid | 1 + .../_learning_path_desktop_view.html.liquid | 2 +- .../_learning_path_mobile_view.html.liquid | 2 +- .../templates/_search_result.html.liquid | 2 +- .../_training_session_calendars.html.liquid | 52 ++++++++++++++++++ .../_training_session_cta.html.liquid | 7 +-- ..._training_session_desktop_view.html.liquid | 4 +- .../_training_session_mobile_view.html.liquid | 2 +- .../templates/catalog.html.liquid | 2 +- .../templates/courses.html.liquid | 1 + .../templates/dashboard.html.liquid | 1 + .../templates/homepage.html.liquid | 2 +- .../templates/not_found.html.liquid | 10 ++++ .../templates/styles.css.liquid | 1 - .../training_session_attendance.html.liquid | 43 +++++++++++++++ .../templates/unsubscribe.html.liquid | 30 ++++++++++ 35 files changed, 464 insertions(+), 36 deletions(-) create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/_cards_course.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/_guides_index.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/_sub_navigation.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/_sub_navigation_item.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/catalog.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/dashboard.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/homepage.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/learning_paths.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/training_events.html.liquid create mode 100644 NP_Custom_Templates/customer_templates/Medisoft/user-guides.html.liquid create mode 100644 NP_Custom_Templates/templates/.DS_Store create mode 100644 NP_Custom_Templates/templates/_course_version_outdated_alert.html.liquid create mode 100644 NP_Custom_Templates/templates/_course_version_outdated_popup.html.liquid create mode 100644 NP_Custom_Templates/templates/_training_session_calendars.html.liquid create mode 100644 NP_Custom_Templates/templates/not_found.html.liquid create mode 100644 NP_Custom_Templates/templates/training_session_attendance.html.liquid create mode 100644 NP_Custom_Templates/templates/unsubscribe.html.liquid diff --git a/NP_Custom_Templates/customer_templates/.DS_Store b/NP_Custom_Templates/customer_templates/.DS_Store index 82d7edf174de8775a63efbcc540d7648f30bfcb1..4fa3a999612662ec27879f94e0d5064af6be2114 100644 GIT binary patch delta 167 zcmZoMXfc@J&&aVcU^gQp$K-QNdXue~uGVuf_%ft2q%dSM6f@*Aq%oA_q#Fh&=jRqM yAOMD%+*Mkg! diff --git a/NP_Custom_Templates/customer_templates/Medisoft/_cards_course.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/_cards_course.html.liquid new file mode 100644 index 00000000..5402ed64 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/_cards_course.html.liquid @@ -0,0 +1,34 @@ +
+
+ {% if course.ribbon %} +
+ {{ course.ribbon }} +
+ {% endif %} + {{ course.name }} +
+

+ {{ course.name }} +

+
+ {{ course.instructor_names }} +
+ +
+
+
diff --git a/NP_Custom_Templates/customer_templates/Medisoft/_guides_index.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/_guides_index.html.liquid new file mode 100644 index 00000000..88a93a27 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/_guides_index.html.liquid @@ -0,0 +1,20 @@ +{% if courses.enrolled.any? %} +
+ {% for course in courses.enrolled %} + {% for category in course.categories %} + {% if category.name == 'User Guides' %} +
+ {% include "cards_course" with course %} + {% endif %} + {% endfor %} +
+ {% endfor %} +
+{% else %} + {% capture message %} + {% t shared.zero_state.courses.index, + key: current_school.course_vocabulary + %} + {% endcapture %} + {% include "courses_zero_state", message: message %} +{% endif %} \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Medisoft/_sub_navigation.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/_sub_navigation.html.liquid new file mode 100644 index 00000000..114820fe --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/_sub_navigation.html.liquid @@ -0,0 +1,11 @@ + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Medisoft/_sub_navigation_item.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/_sub_navigation_item.html.liquid new file mode 100644 index 00000000..7f9da895 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/_sub_navigation_item.html.liquid @@ -0,0 +1,15 @@ + \ No newline at end of file diff --git a/NP_Custom_Templates/customer_templates/Medisoft/catalog.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/catalog.html.liquid new file mode 100644 index 00000000..9b114af7 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/catalog.html.liquid @@ -0,0 +1,23 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.in_catalog %} +{% include "sub_navigation", current_page: "/app/catalog" %} +
+
+
+
{{ catalog.headline }}
+
{{ catalog.subheadline }}
+
+ {% capture label %}{% t shared.filters.by_category %}{% endcapture %} + + {% if courses.in_catalog.any? %} + {% + include "filter_dropdown", + filters: courses.filters, + key: "category_uuid", + label: label + %} + {% endif %} +
+ {% include "courses_catalog" %} +
+{% include "footer" %} diff --git a/NP_Custom_Templates/customer_templates/Medisoft/dashboard.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/dashboard.html.liquid new file mode 100644 index 00000000..371b96c6 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/dashboard.html.liquid @@ -0,0 +1,28 @@ +{% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} +{% include "sub_navigation", current_page: "/app/dashboard" %} +
+
+
+ {% 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/Medisoft/homepage.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/homepage.html.liquid new file mode 100644 index 00000000..547510d4 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/homepage.html.liquid @@ -0,0 +1,52 @@ +{% include "header" current_page_orgin: "false" %} +{% include "course_version_outdated_alert", courses: courses.featured %} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.headline }} +
+
+ {{ homepage.subheadline }} +
+ + {% t .discover %} + +
+
+ {% include "sub_navigation", current_page: "/app" %} + +
+{% include "footer" %} diff --git a/NP_Custom_Templates/customer_templates/Medisoft/learning_paths.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/learning_paths.html.liquid new file mode 100644 index 00000000..6142d64a --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/learning_paths.html.liquid @@ -0,0 +1,14 @@ +{% include "header" %} +{% include "sub_navigation", current_page: "/app/learning_paths" %} +
+
+
+ {% t shared.learning_paths %} +
+
+ {% t .subtitle %} +
+ {% include "learning_paths_index", items: learning_paths.available %} +
+
+{% include "footer" %} diff --git a/NP_Custom_Templates/customer_templates/Medisoft/training_events.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/training_events.html.liquid new file mode 100644 index 00000000..68c108c0 --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/training_events.html.liquid @@ -0,0 +1,19 @@ +{% include "header" %} +{% include "sub_navigation", current_page: "/app/training_events" %} +
+
+
+
+ {% t .title %} +
+
+ {% t .subtitle %} +
+
+
+ {% include "training_events_filter" %} +
+
+ {% include "training_events_index" %} +
+{% include "footer" %} diff --git a/NP_Custom_Templates/customer_templates/Medisoft/user-guides.html.liquid b/NP_Custom_Templates/customer_templates/Medisoft/user-guides.html.liquid new file mode 100644 index 00000000..b1867dfd --- /dev/null +++ b/NP_Custom_Templates/customer_templates/Medisoft/user-guides.html.liquid @@ -0,0 +1,12 @@ +{% include "header" %} +{% include "sub_navigation", current_page: "/app/user-guides" %} +
+
+
+ User Guides & Resources +
+ {% include "guides_index", class: "col-xs-12 col-sm-6 np-stretch-content" %} +
+ +
+{% include "footer" %} diff --git a/NP_Custom_Templates/templates/.DS_Store b/NP_Custom_Templates/templates/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5789844e18534bf5d20f9341b80b76446ba81e2b GIT binary patch literal 38916 zcmeHQ%W@M(6upy>1QHftLsc+@h&(F~UX_GwRp9IriYiDJ*$CS*Muqi=B}2%{OO`BC zS>;pmX*s8RZduZ3G(9~n7i!H^joLHrzSH-de%tD5jNBC$c8q#BsRGu>64SxLP^Zik*;B)OVYGq{aYhYBalU49k(`Q z9~S!-Ecc#taPGl+AK-cvmgq}@key0{+Vdeh{13xEA;W*|5ZaTAjJ(5s7c3)fx5 zADaL6Op3njq!N0N%lP+Ad}>Yv7?<}R0Fiqp?Fj$x;_8vf#Q-@VPBsTNXOs6_wNxw} zFadIF$OCi7CmuwMovWUTo>P2NVh;>wyFk#Ebu#_JaNmv?&kd9omesO)E52UoO?l-r z*~09gX2o0A*9^ABdMchy@qynu^KaM?ecH13HZD3Ua)oh$*?EK6OZ0PWH&UDsPL2eY9W^&C6*q_2K<+Zi8b=)* z-RP)lSDph$JJyJ|4*P4a2zyEZ>Q`o<&c27Wyo3Hd=8797}94ALhG255^nrnOMDFLWon}K@U^iqJV4G4jOvQSx8TKacP zyWhr`xs~<`)~hRCn}y}Kyw-}lN9wfnk3Tbi7Cv6wSz@bVpe$6D1y0z5jOS;b4IeKn zVNg(B0!RZhpH8(!cFa0LPr*^r2x~(v^ch^yd4`@N=2`r3NGL;rB!Z>S9ay4`u^LQ; zMMK#NC>4x-m|;xYzj)g>s9hfhfeZM(IG z4X*Y~_VeuTM#dYahZZc}I^nOmqVFjIsDGA0eSo%zp2OCgk+am+tBdS#%`#pdLSmuJ z1d|D_zMSI9t{~WzWb5sn!%eikdw4{Yw=3RQgQ)blh;VvrNY2>jbNv2iUR}!NOLI3p zHguDkwSt-MFXV(ZzGcQC*5iKF%F(nH910iZYr3B;E1$l1EqQ{HvyV2Ie6cm=n3FT| z+h8xZEJZL!QAKxUz*`3DFk6{P?AxZs3{Z>v@F2wbs+Y=Qtp~6rj99q;(4H`vj_2(Q8z6WJ%`w7 z`BUWL-mAybMs3 zawa5)foMk;i^N8mqu)$b`~@q4^QF{lj5kr%PX;Ar_KTpL=sWj@kV@YT&VbFIYk|V) zLH~b_l;@Q*|8=~;l9AUUmSjM0v3yoa{5US4n)2wkh8k0DvLu#Ib6^aP($w&u$uK?ciIm%sw{dv{j@_q(aNc zIpgv74z*H$fkRk3vCp;p=&dMw;Rd|v|2+BJ66>}RjOnZDulQGzQ_}ul18TdEIP_2E&b{o*csg-Ijhw- zb0#`0BFb4{$*766C$f2+wA$nMbPa=ovJ^lXn3-Kar5{w3K;zBp3HnC0CEZJ^j($Jgn zl+lB_od0{d^?&aF=l+jkyvO~o;_cZ&VxjdUm`vv$uGA{;%Jgt$QBnTfdbm>3!6a7% zi)$UFa+jN(Sv`J>al9?wB9T!>7lb`nbsNd@O&;{PinkpNg@ZB{L>~BA$B1G4O}Ftf z;I64+?3e;5ZU9B@d*;}L-iP}L`Bfe}8jBZGU%eG!uk^tCqa3{Xt)V{Ne775QTT)GX z#lC_RFmP=K0|S(QzK@B$a}V{PixsN4_jrUsK^X}kEvGHAd%e05+l8~+U>Cg={aI~M zVS3?;w0)n86qMYBXIl;O+RRZk0?Z^B%yZw2~mu1I@I0O}Xa$co;O z{0b+1A@f_MW#8dhMps4FISsJ9WM&%ZH+B3SGX1)1yr}wVt@wJR#&=@htnbbiS@ZVe z-S44<@DtiTZ-G{{N~gv1-oY96y+h014!jFQ0`HfMppR$y^z<%`Kzn}FKJ03!*4cnk zk;gMQoveZgIC&qs`hGEex!b5^`s%tz500{_wZkLz688VJ{c*fz_!B;ld{*QY{%#<= zg|mtC0nW!b2RM(?_$E>PQzK9#5C;Ousm+I*ccDv?qt9Eo-@y48ClAIuvY|(!UO~d~f@<@ynh9)UOlN2G7^8UFrY@}f`4UcSSo{V@lxg<8ZBsRGu zHn}7X6J3&~4be{D$4=&!+{20u-)i2+x=l+SVUD4T*@k`0H*gkwh - {% unless form.options.invite? %} + + + + diff --git a/NP_Custom_Templates/templates/_cards_learning_path.html.liquid b/NP_Custom_Templates/templates/_cards_learning_path.html.liquid index c2662e8f..424a81ab 100644 --- a/NP_Custom_Templates/templates/_cards_learning_path.html.liquid +++ b/NP_Custom_Templates/templates/_cards_learning_path.html.liquid @@ -8,15 +8,15 @@ />
- +
{% t shared.learning_path.title %}
- Total Courses: {{ learning_path_course.items.count }} + {{ learning_path.items.count }} {% t .items %}
{% t shared.learning_path.title %}
- +
@@ -53,9 +53,9 @@ {% t shared.view %} - + - Total Courses: {{ learning_path_course.items.count }} + {{ learning_path.items.count }} {% t .items %}
diff --git a/NP_Custom_Templates/templates/_course_header.html.liquid b/NP_Custom_Templates/templates/_course_header.html.liquid index 166e0942..84820ec4 100644 --- a/NP_Custom_Templates/templates/_course_header.html.liquid +++ b/NP_Custom_Templates/templates/_course_header.html.liquid @@ -1,6 +1,6 @@
{{ current_school.course_vocabulary }} - +
diff --git a/NP_Custom_Templates/templates/_course_outline.html.liquid b/NP_Custom_Templates/templates/_course_outline.html.liquid index 22551875..72f97e79 100644 --- a/NP_Custom_Templates/templates/_course_outline.html.liquid +++ b/NP_Custom_Templates/templates/_course_outline.html.liquid @@ -1,6 +1,6 @@
- Content + {% t .header, key: current_school.course_vocabulary %}
    diff --git a/NP_Custom_Templates/templates/_course_version_outdated_alert.html.liquid b/NP_Custom_Templates/templates/_course_version_outdated_alert.html.liquid new file mode 100644 index 00000000..03e245ab --- /dev/null +++ b/NP_Custom_Templates/templates/_course_version_outdated_alert.html.liquid @@ -0,0 +1,7 @@ +{% if courses.include_courses_to_restart? %} + +{% endif %} diff --git a/NP_Custom_Templates/templates/_course_version_outdated_popup.html.liquid b/NP_Custom_Templates/templates/_course_version_outdated_popup.html.liquid new file mode 100644 index 00000000..71795884 --- /dev/null +++ b/NP_Custom_Templates/templates/_course_version_outdated_popup.html.liquid @@ -0,0 +1,33 @@ +
    +
    + + +
    +
    diff --git a/NP_Custom_Templates/templates/_header.html.liquid b/NP_Custom_Templates/templates/_header.html.liquid index 5c035d26..b52b628a 100644 --- a/NP_Custom_Templates/templates/_header.html.liquid +++ b/NP_Custom_Templates/templates/_header.html.liquid @@ -112,6 +112,7 @@ {% else %} diff --git a/NP_Custom_Templates/templates/_training_session_calendars.html.liquid b/NP_Custom_Templates/templates/_training_session_calendars.html.liquid new file mode 100644 index 00000000..6c758b73 --- /dev/null +++ b/NP_Custom_Templates/templates/_training_session_calendars.html.liquid @@ -0,0 +1,52 @@ + diff --git a/NP_Custom_Templates/templates/_training_session_cta.html.liquid b/NP_Custom_Templates/templates/_training_session_cta.html.liquid index e411a9f5..d777c5f6 100644 --- a/NP_Custom_Templates/templates/_training_session_cta.html.liquid +++ b/NP_Custom_Templates/templates/_training_session_cta.html.liquid @@ -30,12 +30,7 @@ {% if training_session.internal? and training_session.approved? %} {% if features.training_events_google_calendar? %} - - {% t .add_to_calendar %} - + {% include "training_session_calendars" %} diff --git a/NP_Custom_Templates/templates/_training_session_desktop_view.html.liquid b/NP_Custom_Templates/templates/_training_session_desktop_view.html.liquid index 2eb50249..5c1abfec 100644 --- a/NP_Custom_Templates/templates/_training_session_desktop_view.html.liquid +++ b/NP_Custom_Templates/templates/_training_session_desktop_view.html.liquid @@ -2,7 +2,7 @@ {% include "training_session_header" %}
-
+
@@ -19,7 +19,7 @@
-
+
{% t shared.more_sessions %}
diff --git a/NP_Custom_Templates/templates/_training_session_mobile_view.html.liquid b/NP_Custom_Templates/templates/_training_session_mobile_view.html.liquid index 4c0cfebe..00455d4e 100644 --- a/NP_Custom_Templates/templates/_training_session_mobile_view.html.liquid +++ b/NP_Custom_Templates/templates/_training_session_mobile_view.html.liquid @@ -1,4 +1,4 @@ -
+
{% include "training_session_header" %}
diff --git a/NP_Custom_Templates/templates/catalog.html.liquid b/NP_Custom_Templates/templates/catalog.html.liquid index bf251686..d7b380b8 100644 --- a/NP_Custom_Templates/templates/catalog.html.liquid +++ b/NP_Custom_Templates/templates/catalog.html.liquid @@ -1,5 +1,5 @@ - {% include "header" %} +{% include "course_version_outdated_alert", courses: courses.in_catalog %} {% include "sub_navigation" %}
diff --git a/NP_Custom_Templates/templates/courses.html.liquid b/NP_Custom_Templates/templates/courses.html.liquid index 9dc24317..ef34b59a 100644 --- a/NP_Custom_Templates/templates/courses.html.liquid +++ b/NP_Custom_Templates/templates/courses.html.liquid @@ -1,4 +1,5 @@ {% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} {% include "sub_navigation" %}
diff --git a/NP_Custom_Templates/templates/dashboard.html.liquid b/NP_Custom_Templates/templates/dashboard.html.liquid index 0ddaf05b..f5c8e7df 100644 --- a/NP_Custom_Templates/templates/dashboard.html.liquid +++ b/NP_Custom_Templates/templates/dashboard.html.liquid @@ -1,4 +1,5 @@ {% include "header" %} +{% include "course_version_outdated_alert", courses: courses.enrolled %} {% include "sub_navigation" %}
diff --git a/NP_Custom_Templates/templates/homepage.html.liquid b/NP_Custom_Templates/templates/homepage.html.liquid index 0423c0aa..77559cc9 100644 --- a/NP_Custom_Templates/templates/homepage.html.liquid +++ b/NP_Custom_Templates/templates/homepage.html.liquid @@ -1,4 +1,5 @@ {% include "header" %} +{% include "course_version_outdated_alert", courses: courses.featured %}
-{% include "group_styles" %} {% include "footer" %} diff --git a/NP_Custom_Templates/templates/not_found.html.liquid b/NP_Custom_Templates/templates/not_found.html.liquid new file mode 100644 index 00000000..91c76e4b --- /dev/null +++ b/NP_Custom_Templates/templates/not_found.html.liquid @@ -0,0 +1,10 @@ +
+ + +
diff --git a/NP_Custom_Templates/templates/styles.css.liquid b/NP_Custom_Templates/templates/styles.css.liquid index c2606d05..7386f452 100644 --- a/NP_Custom_Templates/templates/styles.css.liquid +++ b/NP_Custom_Templates/templates/styles.css.liquid @@ -9,4 +9,3 @@ {{ color_palette.header_font_hover_color }} {{ color_palette.header_color }} */ - diff --git a/NP_Custom_Templates/templates/training_session_attendance.html.liquid b/NP_Custom_Templates/templates/training_session_attendance.html.liquid new file mode 100644 index 00000000..71bb6119 --- /dev/null +++ b/NP_Custom_Templates/templates/training_session_attendance.html.liquid @@ -0,0 +1,43 @@ +{% include "header" %} +
+
+ {% if token %} + +
+ {{ training_session.title }} +
+
+ {% t .info, + event_name: training_session.title, + session_date: training_session.date, + session_time: training_session.time + %} +
+
+ {% t .question %} +
+
+ {% form_authenticity_token %} + + + +
+
+ {% t .salutation %} +
+
+ {{ current_school.name }} +
+ {% else %} + +
+ {% t .success.response_text %} +
+ +
+{% include "footer" %} diff --git a/NP_Custom_Templates/templates/unsubscribe.html.liquid b/NP_Custom_Templates/templates/unsubscribe.html.liquid new file mode 100644 index 00000000..69a54028 --- /dev/null +++ b/NP_Custom_Templates/templates/unsubscribe.html.liquid @@ -0,0 +1,30 @@ +{% include "header" %} +
+
+ {% if token %} + +
+ {% t .unsubscribe_text %} +
+
+ {% t .resubscribe_text %} +
+
+ {% form_authenticity_token %} + + +
+ {% else %} + +
+ {% t .resubscribed_text %} +
+ {% endif %} +
+
+{% include "footer" %}