diff --git a/public/quiz.html b/public/quiz.html index e1bae9a..0ec9f9e 100644 --- a/public/quiz.html +++ b/public/quiz.html @@ -803,7 +803,7 @@

We hope you enjoyed the quiz!

} .form-group .error--message { - color: #f8492e; + color: #ed3224; font-size: 14px; float: right; text-align: right; @@ -812,7 +812,7 @@

We hope you enjoyed the quiz!

} .sweet-placeholder label.error { - color: #f8492e; + color: #ed3224; font-size: 14px; float: right; text-align: right; diff --git a/quiz_maker_player/quiz.css b/quiz_maker_player/quiz.css index 1980bfb..20b902b 100644 --- a/quiz_maker_player/quiz.css +++ b/quiz_maker_player/quiz.css @@ -1,16 +1,17 @@ body { background: white; color: #424242; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; } .quiz .button { width: auto; text-transform: none; - padding-top: calc(.375em - 1px); + padding-top: calc(0.375em - 1px); } -.quiz h1 span, .quiz h2 span { +.quiz h1 span, +.quiz h2 span { background-color: #30394f; line-height: 1.4; box-shadow: 7px 0 0 #30394f, -7px 0 0 #30394f; @@ -37,21 +38,27 @@ body { .quiz .qz-section-wrapper { padding: 15px; - background: rgba(255, 255, 255,0.85); + background: rgba(255, 255, 255, 0.85); border-radius: 5px; padding: 40px 15px; } -button.button, a.button { +button.button, +a.button { color: white; - background-color: #f8492e; - border-color: #f8492e; + background-color: #ed3224; + border-color: #ed3224; } -button.button:hover, a.button:hover, a.button:active, button.button:active, a.button:focus, button.button:focus { - background-color: rgba(0,192,207,0.85); +button.button:hover, +a.button:hover, +a.button:active, +button.button:active, +a.button:focus, +button.button:focus { + background-color: rgba(0, 192, 207, 0.85); color: white; - border-color: rgba(0,192,207,0.85); + border-color: rgba(0, 192, 207, 0.85); } .quiz .section-buttons { @@ -64,10 +71,10 @@ button.button:hover, a.button:hover, a.button:active, button.button:active, a.bu } .quiz .qz-share-image img { - } -.quiz .qz-question, .quiz .section { +.quiz .qz-question, +.quiz .section { background-position: top; background-size: cover; background-repeat: no-repeat; @@ -78,7 +85,8 @@ button.button:hover, a.button:hover, a.button:active, button.button:active, a.bu padding: 0 5%; } -button.share-on-facebook, button.share-on-facebook:hover { +button.share-on-facebook, +button.share-on-facebook:hover { background-color: #597ac7; border-color: #597ac7; color: white; diff --git a/src/FundraiserMailingGenerator/components/ConditionalCTA.js b/src/FundraiserMailingGenerator/components/ConditionalCTA.js index d2b4a7b..3443da9 100644 --- a/src/FundraiserMailingGenerator/components/ConditionalCTA.js +++ b/src/FundraiserMailingGenerator/components/ConditionalCTA.js @@ -16,7 +16,7 @@ class BoxTextHTML extends Component { donorRecurring: '', donorOneClick: true, donorWeekly: false, - nonDonorButtonTemplate: locales[props.lang].donorButtonDefaults, + nonDonorButtonTemplate: locales[props.lang].nonDonorButtonDefaults, nonDonorLinkTemplate: locales[props.lang].nonDonorLinkDefaults, }; } @@ -26,6 +26,7 @@ class BoxTextHTML extends Component { }; buildMarkup = (donorTemplate = 'XXXX', nonDonorTemplate = 'YYYY') => { + console.log(this.state.donorRecurring); // Note: We are doing snapshot testing. If we modify this template, // we should also update the snapshot. Make sure the snapshot // test is passing, before updating the snapshot, otherwise @@ -36,14 +37,14 @@ class BoxTextHTML extends Component {

${ locales[this.props.lang].oneClickCopy }

-

+

${donorTemplate}

{% else %} -

- ${donorTemplate} +

+ ${nonDonorTemplate}

{% endif %}`; return tpl; @@ -56,7 +57,10 @@ class BoxTextHTML extends Component { url: this.props.url, styles: this.props.styles, multipliers: this.state.donorMultipliers, - recurringDefault: this.state.donorRecurring, + recurringDefault: + this.state.donorRecurring == '' + ? 'only_one_off' + : this.state.donorRecurring, oneClick: this.state.donorOneClick, weekly: this.state.donorWeekly, buttonTemplate: this.state.donorButtonTemplate, @@ -64,17 +68,20 @@ class BoxTextHTML extends Component { }); }; - nonDonorTemplate = (options = {}) => { - return utils.nonDonorSuggestedAmountsMarkup({ - correctLowAsks: options.correctLowAsks || false, - isButton: options.isButton || false, + nonDonorTemplate = () => { + return utils.donorSuggestedAmountsMarkup({ locale: this.props.lang, rates: this.props.rates, - styles: this.props.styles, - template: options.template || this.state.nonDonorButtonTemplate, url: this.props.url, - recurringDefault: this.state.donorRecurring, + styles: this.props.styles, + multipliers: this.state.donorMultipliers, + recurringDefault: + this.state.donorRecurring == '' + ? 'only_one_off' + : this.state.donorRecurring, weekly: this.state.donorWeekly, + buttonTemplate: this.state.nonDonorButtonTemplate, + otherAmountTemplate: this.state.nonDonorLinkTemplate, }); }; diff --git a/src/FundraiserMailingGenerator/components/ConditionalCTA.test.js b/src/FundraiserMailingGenerator/components/ConditionalCTA.test.js index d02d858..c477909 100644 --- a/src/FundraiserMailingGenerator/components/ConditionalCTA.test.js +++ b/src/FundraiserMailingGenerator/components/ConditionalCTA.test.js @@ -7,7 +7,6 @@ // - updating the TEST_RATES mocked rates // - changing the default values in the generator form. // - etc. (anything that would affect the resulting markup) - jest.mock('copy-to-clipboard'); import copy from 'copy-to-clipboard'; import React from 'react'; diff --git a/src/FundraiserMailingGenerator/components/__snapshots__/ConditionalCTA.test.js.snap b/src/FundraiserMailingGenerator/components/__snapshots__/ConditionalCTA.test.js.snap index f33e2e9..e4e1782 100644 --- a/src/FundraiserMailingGenerator/components/__snapshots__/ConditionalCTA.test.js.snap +++ b/src/FundraiserMailingGenerator/components/__snapshots__/ConditionalCTA.test.js.snap @@ -4,16 +4,16 @@ exports[`ConditionalCTA Component #donorTemplate 1`] = ` " {% if donations_as_usd.highest_previous %} -

If you’ve saved your payment information with SumOfUs, your donation will go through immediately:

- - = 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.907715|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.485332 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.321722 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.769694 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.536972 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.970775 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.907715 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.907715|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% endif %}{% else %}{{3|multiply:1|floatformat:0}}{% endif %}{% endif %} now= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.2279980000000004|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.982583|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.982583|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.154541|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.154541|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.305458|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.305458|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.4561625|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.4561625|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.3615725|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.5|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.5|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.2279980000000004 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.982583 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.982583|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.982583|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.154541 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.154541|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.154541|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.305458 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.305458|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.305458|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.4561625 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.4561625|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.4561625|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.3615725 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.5 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.5|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.5|floatformat:0}}{% endif %}{% endif %} now= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.970664|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.970664|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.643444|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.643444|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.539388|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.539388|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:3.073944|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:3.073944|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.94155|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.94155|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.81543|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.81543|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.970664 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.970664|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.970664|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.643444 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.643444|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.643444|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.539388 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.539388|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.539388|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:3.073944 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:3.073944|floatformat:0}}{% endif %}{% else %}{{3|multiply:3.073944|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.94155 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.94155|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.94155|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.81543 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.81543|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.81543|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2|floatformat:0}}{% endif %}{% else %}{{3|multiply:2|floatformat:0}}{% endif %}{% endif %} nowDonate another amount +

If you’ve saved your payment information with SumOfUs, your donation will go through immediately:

+

+ = 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.907715|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.485332 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.321722 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.769694 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.536972 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.970775 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.907715 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.907715|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% endif %}{% else %}{{3|multiply:1|floatformat:0}}{% endif %}{% endif %} now= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.2279980000000004|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.982583|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.982583|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.154541|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.154541|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.305458|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.305458|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.4561625|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.4561625|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.3615725|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.5|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.5|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.2279980000000004 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.982583 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.982583|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.982583|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.154541 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.154541|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.154541|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.305458 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.305458|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.305458|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.4561625 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.4561625|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.4561625|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.3615725 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.5 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.5|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.5|floatformat:0}}{% endif %}{% endif %} now= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.970664|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.970664|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.643444|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.643444|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.539388|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.539388|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:3.073944|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:3.073944|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.94155|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.94155|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.81543|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.81543|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.970664 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.970664|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.970664|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.643444 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.643444|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.643444|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.539388 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.539388|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.539388|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:3.073944 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:3.073944|floatformat:0}}{% endif %}{% else %}{{3|multiply:3.073944|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.94155 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.94155|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.94155|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.81543 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.81543|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.81543|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2|floatformat:0}}{% endif %}{% else %}{{3|multiply:2|floatformat:0}}{% endif %}{% endif %} nowDonate another amount {% else %}

Donating just takes a moment -- use Paypal or your card.

= 1 %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% else %}1{% endif %}{% else %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% else %}1{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&recurring_default=&weekly=false&source=fwd\\">Will you chip in {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd|multiply:1.485332 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd|multiply:1.321722 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd|multiply:0.769694 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd|multiply:1.536972 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd|multiply:0.970775 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd|multiply:0.907715 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd|multiply:1 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% endif %}{% endif %} to help? - +

{% endif %}" `; @@ -21,16 +21,15 @@ exports[`ConditionalCTA Component #nonDonorTemplate 1`] = ` " {% if donations_as_usd.highest_previous %} -

If you’ve saved your payment information with SumOfUs, your donation will go through immediately:

- - = 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.907715|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.485332 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.321722 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.769694 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.536972 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.970775 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.907715 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.907715|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% endif %}{% else %}{{3|multiply:1|floatformat:0}}{% endif %}{% endif %} now= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.2279980000000004|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.982583|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.982583|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.154541|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.154541|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.305458|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.305458|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.4561625|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.4561625|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.3615725|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.5|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.5|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.2279980000000004 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.982583 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.982583|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.982583|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.154541 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.154541|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.154541|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.305458 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.305458|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.305458|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.4561625 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.4561625|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.4561625|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.3615725 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.5 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.5|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.5|floatformat:0}}{% endif %}{% endif %} now= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.970664|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.970664|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.643444|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.643444|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.539388|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.539388|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:3.073944|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:3.073944|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.94155|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.94155|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.81543|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.81543|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.970664 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.970664|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.970664|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.643444 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.643444|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.643444|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.539388 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.539388|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.539388|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:3.073944 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:3.073944|floatformat:0}}{% endif %}{% else %}{{3|multiply:3.073944|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.94155 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.94155|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.94155|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.81543 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.81543|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.81543|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2|floatformat:0}}{% endif %}{% else %}{{3|multiply:2|floatformat:0}}{% endif %}{% endif %} nowDonate another amount - +

If you’ve saved your payment information with SumOfUs, your donation will go through immediately:

+

+ = 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:0.907715|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.485332 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.321722 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.769694 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.536972 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.970775 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:0.907715 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% endif %}{% else %}{{3|multiply:0.907715|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% endif %}{% else %}{{3|multiply:1|floatformat:0}}{% endif %}{% endif %} now= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.2279980000000004|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.982583|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.982583|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.154541|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.154541|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.305458|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.305458|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.4561625|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.4561625|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.3615725|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.5|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.5|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.2279980000000004 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.2279980000000004|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.982583 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.982583|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.982583|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.154541 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.154541|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.154541|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.305458 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.305458|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.305458|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.4561625 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.4561625|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.4561625|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.3615725 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.3615725|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.5 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.5|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.5|floatformat:0}}{% endif %}{% endif %} now= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.970664|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.970664|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2.643444|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2.643444|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.539388|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.539388|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:3.073944|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:3.073944|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.94155|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.94155|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.81543|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:1.81543|floatformat:0}}{% endif %}{% else %}{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:2|floatformat:0}}{% else %}1{% endif %}{% else %}{{3|multiply:2|floatformat:0}}{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&one_click=true&source=fwd\\">Donate {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.970664 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.970664|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.970664|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2.643444 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2.643444|floatformat:0}}{% endif %}{% else %}{{3|multiply:2.643444|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.539388 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.539388|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.539388|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:3.073944 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:3.073944|floatformat:0}}{% endif %}{% else %}{{3|multiply:3.073944|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.94155 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.94155|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.94155|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:1.81543 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.81543|floatformat:0}}{% endif %}{% else %}{{3|multiply:1.81543|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd >= 2.5 %}{% if suggested_ask_via_usd|multiply:2 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:2|floatformat:0}}{% endif %}{% else %}{{3|multiply:2|floatformat:0}}{% endif %}{% endif %} nowDonate another amount +

{% else %} -

Donating just takes a moment -- use Paypal or your card.

- +

= 1 %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'Canada' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'United Kingdom' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'New Zealand' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'Switzerland' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% else %}1{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% else %}1{% endif %}{% else %}{% if suggested_ask_via_usd >= 1 %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% else %}1{% endif %}{% endif %}¤cy={% if user.country == 'Australia' %}AUD{% elif user.country == 'Canada' %}CAD{% elif user.country == 'United Kingdom' %}GBP{% elif user.country == 'New Zealand' %}NZD{% elif user.country == 'Switzerland' %}CHF{% elif user.country == 'Mexico' %}MXN{% elif user.country == 'Argentina' %}ARS{% elif user.country == 'Brazil' %}BRL{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}EUR{% else %}USD{% endif %}&recurring_default=&weekly=false&source=fwd\\">Will you chip in {% if user.country == 'Australia' %}A\${% if suggested_ask_via_usd|multiply:1.485332 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.485332|floatformat:0}}{% endif %}{% elif user.country == 'Canada' %}CA\${% if suggested_ask_via_usd|multiply:1.321722 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.321722|floatformat:0}}{% endif %}{% elif user.country == 'United Kingdom' %}£{% if suggested_ask_via_usd|multiply:0.769694 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.769694|floatformat:0}}{% endif %}{% elif user.country == 'New Zealand' %}NZ\${% if suggested_ask_via_usd|multiply:1.536972 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1.536972|floatformat:0}}{% endif %}{% elif user.country == 'Switzerland' %}CHF {% if suggested_ask_via_usd|multiply:0.970775 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.970775|floatformat:0}}{% endif %}{% elif user.country == 'Mexico' %}{% elif user.country == 'Argentina' %}{% elif user.country == 'Brazil' %}{% elif user.country == 'Austria' or user.country == 'Belgium' or user.country == 'Cyprus' or user.country == 'Denmark' or user.country == 'Estonia' or user.country == 'Finland' or user.country == 'France' or user.country == 'Germany' or user.country == 'Greece' or user.country == 'Ireland' or user.country == 'Italy' or user.country == 'Latvia' or user.country == 'Lithuania' or user.country == 'Luxembourg' or user.country == 'Malta' or user.country == 'Netherlands' or user.country == 'Norway' or user.country == 'Portugal' or user.country == 'Slovakia' or user.country == 'Slovenia' or user.country == 'Spain' or user.country == 'Sweden' %}€{% if suggested_ask_via_usd|multiply:0.907715 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:0.907715|floatformat:0}}{% endif %}{% else %}\${% if suggested_ask_via_usd|multiply:1 >= 150 %}{{150|floatformat:0}}{% else %}{{suggested_ask_via_usd|multiply:1|floatformat:0}}{% endif %}{% endif %} to help? - +

{% endif %}" `; @@ -70,7 +69,7 @@ exports[`ConditionalCTA Component It renders 1`] = ` class="input is-small" placeholder="" type="text" - value="Donate {{amount}} now" + value="Donate {{amount}}" /> @@ -131,7 +130,7 @@ exports[`ConditionalCTA Component It renders 1`] = ` name="amount-1" placeholder="Amount 2" type="text" - value="1.5" + value="" />
@@ -207,7 +206,7 @@ exports[`ConditionalCTA Component It renders 1`] = ` Only recurring @@ -323,7 +322,7 @@ exports[`ConditionalCTA Component It renders 1`] = ` class="input is-small" placeholder="" type="text" - value="Donate {{amount}} now" + value="Chip in {{amount}}" />
@@ -346,7 +345,7 @@ exports[`ConditionalCTA Component It renders 1`] = ` class="input is-small" placeholder="" type="text" - value="Will you chip in {{amount}} to help?" + value="Chip in another amount" /> diff --git a/src/FundraiserMailingGenerator/locales/en.js b/src/FundraiserMailingGenerator/locales/en.js index 6c40e46..005e439 100644 --- a/src/FundraiserMailingGenerator/locales/en.js +++ b/src/FundraiserMailingGenerator/locales/en.js @@ -12,9 +12,10 @@ export const monthlyAmount4 = ''; export const monthlyAmount5 = ''; export const recurringDefault = ''; export const amounts = []; -export const donorButtonDefaults = `Donate {{amount}} now`; +export const donorButtonDefaults = `Donate {{amount}}`; +export const nonDonorButtonDefaults = `Chip in {{amount}}`; export const donorLinkDefaults = `Donate another amount`; -export const nonDonorLinkDefaults = `Will you chip in {{amount}} to help?`; +export const nonDonorLinkDefaults = 'Chip in another amount'; export const oneClickCopy = `If you’ve saved your payment information with SumOfUs, your donation will go through immediately:`; export const paymentMethodsCopy = 'Donating just takes a moment -- use Paypal or your card.'; diff --git a/src/FundraiserMailingGenerator/utils/styles.ts b/src/FundraiserMailingGenerator/utils/styles.ts index e10c765..4e307ce 100644 --- a/src/FundraiserMailingGenerator/utils/styles.ts +++ b/src/FundraiserMailingGenerator/utils/styles.ts @@ -10,20 +10,19 @@ type Styles = { const styles: Styles = { classic: { linkStyle: { - color: '#00abbd', - fontFamily: 'sans-serif', + color: '#ed3224', + fontFamily: 'Montserrat, Helvetica, Arial, sans-serif', fontWeight: 'bold', textAlign: 'center', }, buttonStyle: { backgroundColor: '#ed3224', borderRadius: '8px', - boxShadow: 'inset 0 -1.2px rgba(0, 0, 0, 0.12) !important', color: 'white', display: 'block', - fontFamily: 'sans-serif', + fontFamily: 'Montserrat, Helvetica, Arial, sans-serif', fontWeight: 'bold', - lineHeight: '50px', + lineHeight: '55px', margin: '10px auto', maxWidth: '300px', textAlign: 'center', @@ -35,12 +34,12 @@ const styles: Styles = { }, rebranding: { linkStyle: { - color: '#00abbd', + color: '#ed3224', fontFamily: 'Montserrat, Helvetica, Arial, sans-serif', fontWeight: 'bold', }, buttonStyle: { - backgroundColor: '#f8492e', + backgroundColor: '#ed3224', borderRadius: '0px', color: 'white', display: 'block',