From 2371aad994b3da577ccf97aadd19e2f70a80d8a2 Mon Sep 17 00:00:00 2001 From: Andromeda Yelton Date: Tue, 2 Oct 2012 09:18:44 -0400 Subject: [PATCH] update FAQ to reflect new payment system --- frontend/templates/faq_pledge.html | 24 +++++++++++++++-------- frontend/templates/faq_pledge_cancel.html | 2 +- frontend/views.py | 1 + static/css/pledge.css | 6 ++++++ static/less/pledge.less | 7 +++++++ 5 files changed, 31 insertions(+), 9 deletions(-) diff --git a/frontend/templates/faq_pledge.html b/frontend/templates/faq_pledge.html index 0ca0c268..b09bedff 100644 --- a/frontend/templates/faq_pledge.html +++ b/frontend/templates/faq_pledge.html @@ -6,42 +6,50 @@
  • How do I pledge? - Enter your pledge amount and select a premium. (You may select a premium at any level up to and including the amount you pledge.) If you pledge enough, you're also eligible to be credited in the unglued ebook and to include a dedication, and toward the bottom of this page you can specify what you'd like those to say. After you click Pledge, you'll be directed through Amazon to complete the transaction. + Enter your pledge amount and select a premium. (You may select a premium at any level up to and including the amount you pledge.) If you pledge enough, you're also eligible to be credited in the unglued ebook and to include a dedication, and toward the bottom of this page you can specify what you'd like those to say. After you click Unglue it!, you'll be asked for your credit card information.
  • + {% if nonprofit.is_on %} +
  • - Do I need an Amazon account to pledge? + Are pledges tax-deductible? - Yes. We know this is an obstacle for some users, and we apologize. Unfortunately we cannot offer other options at this time. There are more details at our blog. + They can be. On the next page, you'll be given a choice between pledging and donating to our nonprofit partner, {{ nonprofit.name }}. Donations are tax-deductible. They will be used to support the campaign if it succeeds; otherwise they will support the mission of {{ nonprofit.name }}.

    + Pledges are not tax-deductible, but will only be used to fund the campaign to unglue {{ work.title }}.
  • - Can I use PayPal or some other non-Amazon payment system? + When will I be charged? - We're sorry, but no. At this time PayPal and Amazon are the only payment processors which support pledges (rather than immediate charges). While we're working on adding PayPal support, we don't yet have all the approvals we need to do so. There are more details at our blog. + If you donate to our nonprofit partner {{ nonprofit.name }}, you will be charged immediately.

    + If you pledge, you will only be charged if the campaign reaches its target price, ${{ campaign.target }}, by its deadline, {{ campaign.deadline }} In that case, you'll be charged within a day of when it reaches its target. If it does not, your pledge will expire on {{ campaign.deadline }} (Eastern US time) and you will not be charged.
  • + {% else %} +
  • When will I be charged? Campaigns succeed if they reach their target price by their deadline. If this campaign succeeds, you'll be charged within a day of when it reaches its target. If it does not, your pledge will expire on {{ campaign.deadline }} (Eastern US time) and you will not be charged. -
  • + + {% endif %} +
  • What if I want to change my pledge? You can change or cancel your pledge at any time before the campaign ends. This will be the campaign's deadline ({{ campaign.deadline }}) or midnight (Eastern US time) on the day the campaign succeeds, whichever comes first. Go to this book's page and click on the Modify Pledge button.
  • - +
  • How and when will I receive my premiums? - If the campaign succeeds and you requested a special premium, we will disclose to the rights holder your email address and any premiums you requested. The rights holder will then be in touch with you about how your premiums will be fulfilled. If you asked to be listed in the acknowledgements, this will be part of the unglued ebook, which should be emailed to you within 90 days of the close of the campaign. + If the campaign succeeds and you requested a special premium, we will disclose to the rights holder your email address and any premiums you requested. The rights holder will then be in touch with you about how your premiums will be fulfilled. If you asked to be listed in the acknowledgements, this will be part of the unglued ebook, which should be available within 90 days of the close of the campaign.
  • diff --git a/frontend/templates/faq_pledge_cancel.html b/frontend/templates/faq_pledge_cancel.html index ccb5a292..c7f96844 100644 --- a/frontend/templates/faq_pledge_cancel.html +++ b/frontend/templates/faq_pledge_cancel.html @@ -12,7 +12,7 @@
  • Will the rights holder be notified that I have cancelled my pledge? - Not, although your name will stop appearing in the list of people who have pledged to the campaign. + No, although your name will stop appearing in the list of people who have pledged to the campaign.
  • diff --git a/frontend/views.py b/frontend/views.py index a8615418..e4153da9 100755 --- a/frontend/views.py +++ b/frontend/views.py @@ -666,6 +666,7 @@ class PledgeView(FormView): """set up the pledge page""" context = super(PledgeView, self).get_context_data(**kwargs) + context['nonprofit'] = settings.NONPROFIT context.update({ 'work':self.work, diff --git a/static/css/pledge.css b/static/css/pledge.css index cb22d2bd..f1a7678c 100644 --- a/static/css/pledge.css +++ b/static/css/pledge.css @@ -257,3 +257,9 @@ span.menu-item-price { margin-top: 10px; padding: 10px; } +span.level2.menu.answer { + border-left: solid 7px #edf3f4; +} +span.level2.menu.answer a { + font-size: 15px; +} diff --git a/static/less/pledge.less b/static/less/pledge.less index 2c95c150..86deb283 100644 --- a/static/less/pledge.less +++ b/static/less/pledge.less @@ -197,4 +197,11 @@ span.menu-item-price { .one-border-radius(5px); margin-top: 10px; padding: 10px; +} + +span.level2.menu.answer { + border-left: solid 7px @pale-blue; + a { + font-size: @font-size-larger; + } } \ No newline at end of file