update FAQ to reflect new payment system

pull/1/head
Andromeda Yelton 2012-10-02 09:18:44 -04:00
parent a9d9cde55a
commit 2371aad994
5 changed files with 31 additions and 9 deletions

View File

@ -6,24 +6,30 @@
<li class="first parent">
<span class="faq">How do I pledge?</span>
<span class="menu level2 answer">
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.
</span>
</li>
{% if nonprofit.is_on %}
<li class="parent">
<span class="faq">Do I need an Amazon account to pledge?</span>
<span class="faq">Are pledges tax-deductible?</span>
<span class="menu level2 answer">
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 <a href="http://blog.unglue.it/2012/05/03/unglue-it-payment-options-amazon-vs-paypal/">our blog</a>.
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 }}.<br /><br />
Pledges are not tax-deductible, but will only be used to fund the campaign to unglue <i>{{ work.title }}</i>.
</span>
</li>
<li class="parent">
<span class="faq">Can I use PayPal or some other non-Amazon payment system?</span>
<span class="faq">When will I be charged?</span>
<span class="menu level2 answer">
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 <a href="http://blog.unglue.it/2012/05/03/unglue-it-payment-options-amazon-vs-paypal/">our blog</a>.
If you donate to our nonprofit partner {{ nonprofit.name }}, you will be charged immediately.<br /><br />
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.
</span>
</li>
{% else %}
<li class="parent">
<span class="faq">When will I be charged?</span>
<span class="menu level2 answer">
@ -31,6 +37,8 @@
</span>
</li>
{% endif %}
<li class="parent">
<span class="faq">What if I want to change my pledge?</span>
<span class="menu level2 answer">
@ -41,7 +49,7 @@
<li class="last parent">
<span class="faq">How and when will I receive my premiums?</span>
<span class="menu level2 answer">
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.
</span>
</li>

View File

@ -12,7 +12,7 @@
<li class="last parent">
<span class="faq">Will the rights holder be notified that I have cancelled my pledge?</span>
<span class="menu level2 answer">
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.
</span>
</li>

View File

@ -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,

View File

@ -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;
}

View File

@ -198,3 +198,10 @@ span.menu-item-price {
margin-top: 10px;
padding: 10px;
}
span.level2.menu.answer {
border-left: solid 7px @pale-blue;
a {
font-size: @font-size-larger;
}
}