]> git.ipfire.org Git - ipfire.org.git/commitdiff
donate: Update FAQ
authorMichael Tremer <michael.tremer@ipfire.org>
Fri, 31 Dec 2021 12:36:02 +0000 (12:36 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Fri, 31 Dec 2021 12:36:02 +0000 (12:36 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/templates/donate/donate.html
src/web/__init__.py

index dc07d5022f5ea62b01c7912c2797f2423ffdda09..6337d4aaf1a4a9f10dfafc027325745707ca4d97 100644 (file)
                                                                <small class="form-text text-muted">
                                                                        If you are an organization in Europe and you are VAT-registered, please provide your VAT number here.
                                                                        It will make your donation VAT free (if applicable) and the project will benefit from more of your help.
-                                                                       Please see the FAQ below for more details about VAT.
+                                                                       <a href="#faq">Please see the FAQ below for more details about VAT</a>
                                                                </small>
                                                        </div>
 
                                                and encourage them to set up a monthly donation.
                                        </p>
 
-                                       <div class="faq">
+                                       <div id="faq">
                                                <h5>Frequently Asked Questions</h5>
 
                                                <p>
-                                                       <a data-toggle="collapse" href="#faq-bank-transfer">
-                                                               Do you accept bank transfer via SEPA?
+                                                       <a data-toggle="collapse" href="#faq-payment-methods">
+                                                               What payment methods do you accept?
                                                        </a>
                                                </p>
 
-                                               <div class="collapse" id="faq-bank-transfer">
+                                               <div class="collapse" id="faq-payment-methods">
                                                        <p>
-                                                               We do accept direct transfers through SEPA. These are our bank details:
+                                                               We currently accept the following payment methods:
                                                        </p>
 
-                                                       <dl>
-                                                               <dt>Bank Account Owner</dt>
-                                                               <dd>IPFire Project</dd>
+                                                       <ul>
+                                                               <li>Credit Card (VISA, MasterCard, and American Express)</li>
+                                                               <li>SEPA Direct Debit</li>
+                                                               <li>SEPA Bank Transfer</li>
+                                                               <li>PayPal</li>
+                                                       </ul>
 
-                                                               <dt>IBAN</dt>
-                                                               <dd>DE76 3605 0105 1010 8206 84</dd>
+                                                       <p>
+                                                               Please fill in the form above and you will be able to
+                                                               chose a payment method in the next step.
+                                                       </p>
+                                               </div>
+
+                                               <p>
+                                                       <a data-toggle="collapse" href="#faq-vat">
+                                                               Will you charge VAT?
+                                                       </a>
+                                               </p>
+
+                                               <div class="collapse" id="faq-vat">
+                                                       <p>
+                                                               Yes, we charge VAT wherever required.
+                                                       </p>
+
+                                                       <p>
+                                                               Donors from outside the EU will always donate entirely
+                                                               tax-free.
+                                                       </p>
+
+                                                       <p>
+                                                               As an individual from an EU country, you will be charged
+                                                               VAT at your local rate.
+                                                               The entered amount will be inclusive of VAT.
+                                                       </p>
 
-                                                               <dt>BIC</dt>
-                                                               <dd>SPESDE3EXXX</dd>
-                                                       </dl>
+                                                       <p>
+                                                               As an organization, the entered amount will be exclusive
+                                                               of VAT. That means that the final billed amount might be
+                                                               higher than the amount you entered.
+                                                               Any charged VAT can be reclaimed with your VAT return.
+                                                               Organizations won't be charged any VAT if they can provide
+                                                               a valid VAT number or if they are based outside the EU.
+                                                               Please ensure to enter your VAT number before submitting
+                                                               the form.
+                                                       </p>
                                                </div>
 
                                                <p>
                                                                process your payment, and prevent fraudulent charges to your credit card.
                                                        </p>
 
+                                                       <p>
+                                                               Additionally we need your billing address in order to work
+                                                               out if any VAT has to be paid on your donation.
+                                                       </p>
+
                                                        <p>
                                                                We keep your information private - if you have questions, please refer to
                                                                Lightning Wire Labs' <a href="https://www.lightningwirelabs.com/legal">Privacy Policy</a>.
 
                                                <div class="collapse" id="faq-tax-deduction">
                                                        <p>
-                                                               IPFire is not registered as a charitable organization and therefore donations
-                                                               are not tax deductible in Germany or the European Union.
-                                                       </p>
-
-                                                       <p>
-                                                               For donors outside of the European Union, please consult your tax advisor
-                                                               about whether your donation is tax deductible.
+                                                               Yes, from 2021, you will receive a formal invoice
+                                                               with your donation which is fully tax-deductible.
                                                        </p>
                                                </div>
 
 
                                                <div class="collapse" id="faq-cancel">
                                                        <p>
-                                                               Your credit card statements or bank statements will contain a link
-                                                               that you can follow to cancel your donation at any time.
+                                                               You will be able to manage any recurring donations
+                                                               in our online store at
+                                                               <a href="https://store.lightningwirelabs.com/">store.lightningwirelabs.com</a>.
+                                                               If you do not have an account already, please register
+                                                               with the email address you have used to make your donation.
                                                        </p>
                                                </div>
 
index 676e6edb8a60fc3dcd64283401c438fdb4eb5684..d0640af95d63f962d82a99cb009ca2c805d9fe40 100644 (file)
@@ -115,7 +115,7 @@ class Application(tornado.web.Application):
                        (r"/logout", auth.LogoutHandler),
                ]
 
-               self.add_handlers(r"(dev|www)\.ipfire\.org", [
+               self.add_handlers(r"(dev|www)\.ipfire\.rocks", [
                        # Entry site that lead the user to index
                        (r"/", IndexHandler),