Changeset - 2a1b0d295de4
[Not reviewed]
Merge
0 2 1
Christopher Neugebauer - 7 years ago 2017-08-23 20:53:01
chrisjrn@gmail.com
Merge branch 'master' into prod
3 files changed with 57 insertions and 1 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/_footer.html
Show inline comments
...
 
@@ -16,3 +16,5 @@
 
      | <a href="/code-of-conduct">Code of Conduct</a>
 
      | <a href="/about/colophon">Colophon</a></p>
 
      | <a href="/about/colophon">Colophon</a>
 
      | <a href="/about/donate">Donate</a>
 
    </p>
 

	
pinaxcon/templates/static_pages/about/donate.html
Show inline comments
 
new file 100644
 
{% extends "page_with_title_and_lede.html" %}
 

	
 
{% load i18n %}
 

	
 
{% block head_title %}Donate{% endblock %}
 

	
 
{% block heading %}Donate to North Bay Python{% endblock %}
 

	
 
{% block body_class %}about{% endblock %}
 

	
 
{% block lede %}
 
  Donations to North Bay Python are processed by <a href="https://sfconservancy.org/donate">Software Freedom Conservancy, Inc. a 501(c)(3) organization incorporated in New York</a>, and donations made to it are fully tax-deductible to the extent permitted by law.
 
{% endblock %}
 

	
 

	
 
{% block content %}
 

	
 
<h2>Donate by credit/debit card or ACH bank transfer <small>(via PayPal)</small></h2>
 

	
 
<p>
 
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
 
    <input type="hidden" name="cmd" value="_s-xclick">
 
    <input type="hidden" name="hosted_button_id" value="E96FCPFPZK25C">
 
    <button type="submit" class="btn btn-large btn-primary" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">Donate via PayPal</button>
 
    <img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
 
  </form>
 
</p>
 

	
 
<p>We accept Visa, MasterCard, American Express, Discover, and bank transfer.</p>
 

	
 

	
 
<h2>Donate by US bank check</h2>
 

	
 
<p>We can accept checks drawn in USD from banks in the United States.</p>
 

	
 
<p>Please make the check payable to <i>"Software Freedom Conservancy, Inc."</i> and place <i>"Directed donation: North Bay Python"</i> in the memo field.</p>
 

	
 
<p>Mail your check to:</p>
 

	
 
<address>
 
  Software Freedom Conservancy, Inc. <br>
 
  137 Montague ST  STE 380 <br>
 
  BROOKLYN, NY 11201 <br>
 
  United States
 
</address>
 

	
 

	
 
<h2>Other donation methods</h2>
 
<p>We can accept donations through other means, including wire transfer. To enquire, please e-mail <a href="mailto:spam@northbaypython.org">spam@northbaypython.org.</a></p>
 

	
 

	
 
{% endblock %}
pinaxcon/urls.py
Show inline comments
...
 
@@ -23,2 +23,4 @@ urlpatterns = [
 
    url(r"^about/colophon$", TemplateView.as_view(template_name="static_pages/about/colophon.html"), name="about/colophon"),
 
    url(r"^about/donate$", TemplateView.as_view(template_name="static_pages/about/donate.html"), name="about/donate"),
 
    url(r"^donate$", RedirectView.as_view(url="about/donate")),
 

	
0 comments (0 inline, 0 general)