From 6c5c95bc97d5b980fd429f22be470bcccb416f9b Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 13 Jun 2017 13:07:18 -0400 Subject: [PATCH 01/46] Click to call on mobile (Temporarily on non-mobile for testing) --- call.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/call.html b/call.html index 487e095..10b51b9 100644 --- a/call.html +++ b/call.html @@ -121,5 +121,12 @@

+ {% endblock %} From cf88bf428ba63907ad225a217e94df32e549f5d9 Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 13 Jun 2017 13:11:29 -0400 Subject: [PATCH 02/46] Moving script earlier --- call.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/call.html b/call.html index 10b51b9..7531e40 100644 --- a/call.html +++ b/call.html @@ -1,5 +1,12 @@ {% extends "./wrapper.html" %}{% load actionkit_tags %} {% block content %} +
@@ -121,12 +128,5 @@

- {% endblock %} From 599f97143bae510552d98dfa4cdb4079c2aca1fd Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 13 Jun 2017 13:14:43 -0400 Subject: [PATCH 03/46] Omit if for now --- call.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/call.html b/call.html index 7531e40..225432e 100644 --- a/call.html +++ b/call.html @@ -2,9 +2,11 @@ {% block content %} From 5b3b1473c7636194f773c0423c0bdb840a1b54a3 Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 13 Jun 2017 13:16:50 -0400 Subject: [PATCH 04/46] Console log --- call.html | 1 + 1 file changed, 1 insertion(+) diff --git a/call.html b/call.html index 225432e..c69c55c 100644 --- a/call.html +++ b/call.html @@ -4,6 +4,7 @@ $(document).ready(function() { // if($(window).width() > 400) { $('.ak-target-contact').html(' ' + $('.ak-target-contact').text() + ''); +console.log(' ' + $('.ak-target-contact').text() + ''); } // } ); From 79dcdaed3e8524fe7d74cf6d9dd8d60302bb784d Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 13 Jun 2017 13:26:55 -0400 Subject: [PATCH 05/46] Trying a less crappy demo --- call.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/call.html b/call.html index c69c55c..a68370f 100644 --- a/call.html +++ b/call.html @@ -3,8 +3,14 @@ From 23e8a9af9b1d21b3c97ca1cbc9ed9bf8a6f41c3b Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 12:20:32 -0400 Subject: [PATCH 11/46] Testing AK's recommended script --- call.html | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/call.html b/call.html index dee707a..6e2791a 100644 --- a/call.html +++ b/call.html @@ -1,14 +1,28 @@ {% extends "./wrapper.html" %}{% load actionkit_tags %} {% block content %}
From a3cc8df615e847651686fa1b53c6f6aa2a950618 Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 12:25:01 -0400 Subject: [PATCH 12/46] Hiding all script --- call.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/call.html b/call.html index 6e2791a..72fa432 100644 --- a/call.html +++ b/call.html @@ -8,7 +8,7 @@ $(this).wrapInner(link); }); });*/ -$(document).ready(function() { +/*$(document).ready(function() { var original_onTargets = actionkit.forms.onTargets; actionkit.forms.onTargets = function () { var checkboxes = actionkit.context.targets.checkboxes_html; @@ -21,7 +21,7 @@ original_onTargets(); }; }); - +*/ From 979271d21d3177a2c54f2826928a81becd29bc27 Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 12:46:36 -0400 Subject: [PATCH 13/46] Melding the two scripts? We'll see... --- call.html | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/call.html b/call.html index 72fa432..2fb22fd 100644 --- a/call.html +++ b/call.html @@ -8,20 +8,18 @@ $(this).wrapInner(link); }); });*/ -/*$(document).ready(function() { +$(document).ready(function() { var original_onTargets = actionkit.forms.onTargets; actionkit.forms.onTargets = function () { - var checkboxes = actionkit.context.targets.checkboxes_html; - checkboxes = checkboxes.replace(/(class="ak-target-contact">)(*?)(<)/g, - function ( match, pre, num, post ) { - return pre + '' + num + '' + post + var officePhoneNumber = $('.ak-target-contact').text().replace(/-/g,'').replace(/\(/,'').replace(/\)/,'').replace(/\s/,''); + var link = $('', {class:'phone-link', href:'tel:'+parseInt(officePhoneNumber)}); + $('.ak-target-contact').wrapInner(link); } - ); - actionkit.context.targets.checkboxes_html = checkboxes; + ); original_onTargets(); }; }); -*/ + From 8a51675be7645150a682510abc65bd80f516b810 Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 13:02:49 -0400 Subject: [PATCH 14/46] Fixed regex in AK code --- call.html | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/call.html b/call.html index 2fb22fd..ca0e57c 100644 --- a/call.html +++ b/call.html @@ -11,16 +11,17 @@ $(document).ready(function() { var original_onTargets = actionkit.forms.onTargets; actionkit.forms.onTargets = function () { - var officePhoneNumber = $('.ak-target-contact').text().replace(/-/g,'').replace(/\(/,'').replace(/\)/,'').replace(/\s/,''); - var link = $('', {class:'phone-link', href:'tel:'+parseInt(officePhoneNumber)}); - $('.ak-target-contact').wrapInner(link); + var checkboxes = actionkit.context.targets.checkboxes_html; + checkboxes = checkboxes.replace(/{class="ak-target-contact">}{*?}{<\/}/g, + function ( match, pre, num, post ) { + return pre + '' + num + '' + post } - ); + ); + actionkit.context.targets.checkboxes_html = checkboxes; original_onTargets(); }; }); -
From ca65455ad41ef4bd233a750f04a5f90710622687 Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 13:18:45 -0400 Subject: [PATCH 15/46] Testing that it fires --- call.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/call.html b/call.html index ca0e57c..12d9d6b 100644 --- a/call.html +++ b/call.html @@ -11,14 +11,15 @@ $(document).ready(function() { var original_onTargets = actionkit.forms.onTargets; actionkit.forms.onTargets = function () { - var checkboxes = actionkit.context.targets.checkboxes_html; + /*var checkboxes = actionkit.context.targets.checkboxes_html; checkboxes = checkboxes.replace(/{class="ak-target-contact">}{*?}{<\/}/g, function ( match, pre, num, post ) { return pre + '' + num + '' + post } ); actionkit.context.targets.checkboxes_html = checkboxes; - original_onTargets(); + original_onTargets();*/ + console.log("This code is firing"); }; }); From 2b00ea4519bb2e966701ded9a8369711e8d8ecd6 Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 13:21:03 -0400 Subject: [PATCH 16/46] Display original targets --- call.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/call.html b/call.html index 12d9d6b..56b95b9 100644 --- a/call.html +++ b/call.html @@ -17,8 +17,8 @@ return pre + '' + num + '' + post } ); - actionkit.context.targets.checkboxes_html = checkboxes; - original_onTargets();*/ + actionkit.context.targets.checkboxes_html = checkboxes;*/ + original_onTargets(); console.log("This code is firing"); }; }); From 47b81b58db86efbaf62f2fa77bbf3c0ebe3508e7 Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 13:39:18 -0400 Subject: [PATCH 17/46] Bring back in replace script --- call.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/call.html b/call.html index 56b95b9..d586206 100644 --- a/call.html +++ b/call.html @@ -11,6 +11,10 @@ $(document).ready(function() { var original_onTargets = actionkit.forms.onTargets; actionkit.forms.onTargets = function () { + var $officePhone = $('.ak-target-contact'); + $officePhone = $(this).text().replace(/-/g,'').replace(/\(/,'').replace(/\)/,'').replace(/\s/,''); + var link = $('', {class:'phone-link', href:'tel:'+ parseInt($officePhone)}); + $officePhone.wrapInner(link); /*var checkboxes = actionkit.context.targets.checkboxes_html; checkboxes = checkboxes.replace(/{class="ak-target-contact">}{*?}{<\/}/g, function ( match, pre, num, post ) { @@ -18,7 +22,7 @@ } ); actionkit.context.targets.checkboxes_html = checkboxes;*/ - original_onTargets(); + original_onTargets(); console.log("This code is firing"); }; }); From caa349cd2d181fbdb7bc2eb8956a9324c32b9b3c Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 13:47:54 -0400 Subject: [PATCH 18/46] Umm how does $(this) work again? --- call.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/call.html b/call.html index d586206..146b60a 100644 --- a/call.html +++ b/call.html @@ -13,8 +13,7 @@ actionkit.forms.onTargets = function () { var $officePhone = $('.ak-target-contact'); $officePhone = $(this).text().replace(/-/g,'').replace(/\(/,'').replace(/\)/,'').replace(/\s/,''); - var link = $('', {class:'phone-link', href:'tel:'+ parseInt($officePhone)}); - $officePhone.wrapInner(link); + $officePhone = $('' + $(this) + ''); /*var checkboxes = actionkit.context.targets.checkboxes_html; checkboxes = checkboxes.replace(/{class="ak-target-contact">}{*?}{<\/}/g, function ( match, pre, num, post ) { From c4d56d0b6436e657d7a659cde8387c29610613ca Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 13:49:38 -0400 Subject: [PATCH 19/46] Console.log $officePhone --- call.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/call.html b/call.html index 146b60a..a57eb02 100644 --- a/call.html +++ b/call.html @@ -22,7 +22,7 @@ ); actionkit.context.targets.checkboxes_html = checkboxes;*/ original_onTargets(); - console.log("This code is firing"); + console.log($officePhone); }; }); From edc5c710e0c125ac9a3068644810bbcaff01bdff Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 14:00:05 -0400 Subject: [PATCH 20/46] Reshaping the function --- call.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/call.html b/call.html index a57eb02..e451238 100644 --- a/call.html +++ b/call.html @@ -12,8 +12,10 @@ var original_onTargets = actionkit.forms.onTargets; actionkit.forms.onTargets = function () { var $officePhone = $('.ak-target-contact'); - $officePhone = $(this).text().replace(/-/g,'').replace(/\(/,'').replace(/\)/,'').replace(/\s/,''); - $officePhone = $('' + $(this) + ''); + $officePhone = function(){ + $(this).text().replace(/-/g,'').replace(/\(/,'').replace(/\)/,'').replace(/\s/,''); + return $('' + $(this) + ''); + } /*var checkboxes = actionkit.context.targets.checkboxes_html; checkboxes = checkboxes.replace(/{class="ak-target-contact">}{*?}{<\/}/g, function ( match, pre, num, post ) { From 7a137518818267d262b5c8ae1715f3268b91253d Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 14:18:02 -0400 Subject: [PATCH 21/46] Earlier version of the JS --- call.html | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/call.html b/call.html index e451238..0160fd7 100644 --- a/call.html +++ b/call.html @@ -11,10 +11,13 @@ $(document).ready(function() { var original_onTargets = actionkit.forms.onTargets; actionkit.forms.onTargets = function () { - var $officePhone = $('.ak-target-contact'); - $officePhone = function(){ - $(this).text().replace(/-/g,'').replace(/\(/,'').replace(/\)/,'').replace(/\s/,''); - return $('' + $(this) + ''); + $.each($(".ak-target-contact"), function () { + //replace all instances of '-' + var jPhoneNumber = $(this).text().replace(/-/g,''); + var link = $('', {class: 'jPhoneLink', href: 'tel:'+jPhoneNumber}); + + $(this).wrapInner(link); + }); } /*var checkboxes = actionkit.context.targets.checkboxes_html; checkboxes = checkboxes.replace(/{class="ak-target-contact">}{*?}{<\/}/g, @@ -24,7 +27,6 @@ ); actionkit.context.targets.checkboxes_html = checkboxes;*/ original_onTargets(); - console.log($officePhone); }; }); From 16e1a69f6dc64b2f2d5374928b1a6c4442820279 Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 14:21:57 -0400 Subject: [PATCH 22/46] Syntax error --- call.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/call.html b/call.html index 0160fd7..964b0e0 100644 --- a/call.html +++ b/call.html @@ -18,7 +18,7 @@ $(this).wrapInner(link); }); - } + }; /*var checkboxes = actionkit.context.targets.checkboxes_html; checkboxes = checkboxes.replace(/{class="ak-target-contact">}{*?}{<\/}/g, function ( match, pre, num, post ) { @@ -27,9 +27,7 @@ ); actionkit.context.targets.checkboxes_html = checkboxes;*/ original_onTargets(); - }; -}); - + });
From 7b14a22da6f24b5d2e43b23b872b0d291009a324 Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 14:55:13 -0400 Subject: [PATCH 23/46] Making onTargets() a function? --- call.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/call.html b/call.html index 964b0e0..3ca9687 100644 --- a/call.html +++ b/call.html @@ -9,7 +9,7 @@ }); });*/ $(document).ready(function() { - var original_onTargets = actionkit.forms.onTargets; + var original_onTargets = actionkit.forms.onTargets(); actionkit.forms.onTargets = function () { $.each($(".ak-target-contact"), function () { //replace all instances of '-' From 963b6d1ec88dc68c242f2c5ae63b6c4c182aa917 Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 15:00:47 -0400 Subject: [PATCH 24/46] Ugh --- call.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/call.html b/call.html index 3ca9687..599e076 100644 --- a/call.html +++ b/call.html @@ -14,9 +14,9 @@ $.each($(".ak-target-contact"), function () { //replace all instances of '-' var jPhoneNumber = $(this).text().replace(/-/g,''); - var link = $('', {class: 'jPhoneLink', href: 'tel:'+jPhoneNumber}); - - $(this).wrapInner(link); + var link = $('' + jPhoneNumber + ''); + $(this).text = link; + console.log(jPhoneNumber); }); }; /*var checkboxes = actionkit.context.targets.checkboxes_html; @@ -27,6 +27,7 @@ ); actionkit.context.targets.checkboxes_html = checkboxes;*/ original_onTargets(); + }); From 5865583ffd99da30d47bff725109175f1638cc2a Mon Sep 17 00:00:00 2001 From: christineletts Date: Wed, 14 Jun 2017 15:07:15 -0400 Subject: [PATCH 25/46] Ughhh --- call.html | 32 +++++++++++--------------------- 1 file changed, 11 insertions(+), 21 deletions(-) diff --git a/call.html b/call.html index 3ca9687..edc16ee 100644 --- a/call.html +++ b/call.html @@ -1,33 +1,23 @@ {% extends "./wrapper.html" %}{% load actionkit_tags %} {% block content %}
From b1f0bc9abe3ea5683dc8e1e95c70e4d033d5faeb Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 27 Jun 2017 12:57:02 -0400 Subject: [PATCH 26/46] Embed event signup for onsite registrants Include hidewrapper and selfredirect params in the iframe as a starter for things that'll go into the wrapper. --- event_host_tools.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/event_host_tools.html b/event_host_tools.html index c7e3c8e..01f9dc9 100644 --- a/event_host_tools.html +++ b/event_host_tools.html @@ -221,7 +221,10 @@

{% endif %}

- + +

Onsite Registrants

+ + {% else %}
From 9dc4c7772d3059de92a1b47091977eaab7e534f9 Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 27 Jun 2017 13:01:37 -0400 Subject: [PATCH 27/46] Add if not hidewrapper Should hide the beginning and ending content? We'll see... --- wrapper.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wrapper.html b/wrapper.html index 7bd35ea..0d64f85 100644 --- a/wrapper.html +++ b/wrapper.html @@ -40,7 +40,8 @@ {% end %} {% block script_additions %}{% endblock %} - +{% if not request.GET.hidewrapper=1 %} +
@@ -55,11 +56,11 @@
-
+
{% endif %} {% block content %}{% endblock %} -
+ {% if not request.GET.hidewrapper=1 %}
@@ -172,6 +173,7 @@
+ {% endif %} {% block below_form %}
@@ -56,11 +55,11 @@
-
{% endif %} +
{% block content %}{% endblock %} - {% if not request.GET.hidewrapper=1 %}
+
@@ -173,7 +172,6 @@
- {% endif %} {% block below_form %} @@ -60,7 +60,7 @@ {% block content %}{% endblock %} - {% if not request.GET.hidewrapper=1 %}
+ {% if request.GET.hidewrapper=1 %}{% else %}
From 7eab97573da0c90ac5e1a72e8760716a4555fc86 Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 27 Jun 2017 16:00:06 -0400 Subject: [PATCH 30/46] Hide elements for embedding in another page --- event_attend.html | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/event_attend.html b/event_attend.html index 880bae6..1ca29df 100644 --- a/event_attend.html +++ b/event_attend.html @@ -23,9 +23,9 @@ +{% if request.GET.selfredirect %}{% endif %} - - +{% if not request.GET.hidewrapper %}
@@ -55,7 +55,7 @@

Update Signup Information

- +{% endif %}
@@ -72,11 +72,13 @@

Update Signup Information

+{% if not request.GET.hidewrapper %} {% with 1 as hide_map %} {% include "./event_search_results.html" %} {% endwith %} +{% endif %} @@ -116,11 +118,14 @@

Update Signup Information

-
-{% if event.is_in_past %} +{% if event.is_in_past and not request.GET.hidewrapper %}

Sorry, it's too late to sign up for this event.

-{% else %} +{% elif request.GET.hidewrapper %} +
+{% elif not event.is_in_past and not request.GET.hidewrapper %} +

RSVP to attend this event

+{% endif %}
@@ -264,4 +269,4 @@

Sorry, this event isn't available for signup.

-{% endblock %} \ No newline at end of file +{% endblock %} From 0fad4c4bed6a3e7f115605b20b68a0273fe2fcf3 Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 27 Jun 2017 16:02:01 -0400 Subject: [PATCH 31/46] Adding Onsite Signups --- event_host_tools.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/event_host_tools.html b/event_host_tools.html index 01f9dc9..66cb216 100644 --- a/event_host_tools.html +++ b/event_host_tools.html @@ -219,12 +219,13 @@

{% include "./event_invite.html" %}

{% endif %} +
-

Onsite Registrants

- - +

Onsite Registrants

+ + {% else %}
From ce5c4426fa5b1415173b3e8264d2487cf1218289 Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 27 Jun 2017 16:05:56 -0400 Subject: [PATCH 32/46] Hide visible HTML other than form --- wrapper.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/wrapper.html b/wrapper.html index f19624d..f325751 100644 --- a/wrapper.html +++ b/wrapper.html @@ -57,14 +57,14 @@
- +{% endif %}
- {% endif %} + {% block content %}{% endblock %} - {% if request.GET.hidewrapper=1 %}{% else %}
+
{% if not request.GET.hidewrapper %}
@@ -178,8 +178,8 @@
- {% endif %} - + +{% endif %} {% block below_form %} From ca7ffd4663e1c6411a6b295f17442edb63bc3f7f Mon Sep 17 00:00:00 2001 From: christineletts Date: Tue, 27 Jun 2017 16:14:33 -0400 Subject: [PATCH 34/46] Using if not instead of if else --- wrapper.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrapper.html b/wrapper.html index 836c60d..6691e02 100644 --- a/wrapper.html +++ b/wrapper.html @@ -41,7 +41,7 @@ {% block script_additions %}{% endblock %} -{% if request.GET.hidewrapper %}{% else %} +{% if not request.GET.hidewrapper %} From fd172ea9681b3dca2fb3878b310924369af7a5f4 Mon Sep 17 00:00:00 2001 From: christineletts Date: Mon, 6 Nov 2017 12:12:55 -0500 Subject: [PATCH 35/46] Hide leadin and letter if missing context --- letter.html | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/letter.html b/letter.html index 1f77d5f..966fab0 100644 --- a/letter.html +++ b/letter.html @@ -16,10 +16,29 @@

{{ page.title }}

+ {% autoescape off %}
{% include_tmpl form.about_text %}
{% endautoescape %} - + {% if page.custom_fields.fallback %} +
+ {% else %} {% if form.statement_leadin %} {% autoescape off %} From 691dc5ec7cdcc7c88bdfd50d2522f27a9853253e Mon Sep 17 00:00:00 2001 From: christineletts Date: Mon, 6 Nov 2017 12:24:53 -0500 Subject: [PATCH 38/46] Leadin hidden again! --- letter.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/letter.html b/letter.html index 9a94c20..796bd38 100644 --- a/letter.html +++ b/letter.html @@ -31,7 +31,13 @@

{{ page.title }}

+ {% include "./user_form_wrapper_local.html" %} + {% include "./optin.html" %} +
+ + {% else %}

{% if page.custom_fields.contact_us %}Get in Touch{% else %}Send the letter{% endif %}

{% include "./user_form_wrapper.html" %} {% include "./inline_tellafriend.html" %} - - - + {% include "./optin.html" %} + {% endif %}
From 1f0247d7074c33fd8eb87e123a65ea4d208387be Mon Sep 17 00:00:00 2001 From: christineletts Date: Mon, 6 Nov 2017 12:47:10 -0500 Subject: [PATCH 41/46] Update letter.html --- letter.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letter.html b/letter.html index a8c3bfb..f6df8c6 100644 --- a/letter.html +++ b/letter.html @@ -73,7 +73,7 @@

{{ page.title }}

{% include "./user_form_wrapper_local.html" %} {% include "./optin.html" %} -
+
+
+
+ + {% if page.custom_fields.featured_image %} + + {% endif %} + + {% include "./progress_meter.html" %} + +
+
+
+ + + {% include "./user_form_wrapper_local.html" %} + {% include "./optin.html" %} +
+ +
+
+ + +
+ +
+ {% if form.survey_question_text %} + + + {% endif %} + +
+
+
+ + +
+
+ + +
+
+ + +
+ + + + +
From b7c41f64054a3fcd22ecdd735dd20b9f8461ed1d Mon Sep 17 00:00:00 2001 From: christineletts Date: Mon, 6 Nov 2017 14:58:35 -0500 Subject: [PATCH 43/46] Better call test --- letter.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/letter.html b/letter.html index 46df5ae..c5bd826 100644 --- a/letter.html +++ b/letter.html @@ -52,7 +52,7 @@

{{ page.title }}

{% autoescape off %} - {% include_tmpl form.introduction_text %} + {% include_tmpl form.statement_leadin %} {% endautoescape %}
@@ -121,7 +121,7 @@

- {% if form.survey_question_text %} + - {% endif %} +

@@ -160,7 +160,7 @@

- + {% endblock %} From e65573da32889c27aed4d6e403749f93c778fed1 Mon Sep 17 00:00:00 2001 From: christineletts Date: Mon, 6 Nov 2017 15:27:37 -0500 Subject: [PATCH 44/46] Show context --- letter.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/letter.html b/letter.html index c5bd826..63b4d76 100644 --- a/letter.html +++ b/letter.html @@ -46,8 +46,14 @@

{{ page.title }}

+
+
+
From 976650a944ca73333623603fcf4602ca2e2f9496 Mon Sep 17 00:00:00 2001 From: christineletts Date: Mon, 6 Nov 2017 15:33:18 -0500 Subject: [PATCH 45/46] Show context --- call.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/call.html b/call.html index a3bdd45..dcdd07c 100644 --- a/call.html +++ b/call.html @@ -38,7 +38,11 @@

{{ page.title }}

{% autoescape off %} {% include_tmpl form.introduction_text %} {% endautoescape %} - +
+
From 73c8be1417f355cfd3a0d2d39c9e8c50ed896f3e Mon Sep 17 00:00:00 2001 From: christineletts Date: Thu, 9 Nov 2017 15:51:45 -0500 Subject: [PATCH 46/46] Custom button --- survey.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/survey.html b/survey.html index dc8112c..567627b 100644 --- a/survey.html +++ b/survey.html @@ -45,7 +45,7 @@

{{ page.title }}

{% endfor %} {% endautoescape %} - +