diff --git a/pinaxcon/templates/_footer.html b/pinaxcon/templates/_footer.html index 093cfdf..8dffd63 100644 --- a/pinaxcon/templates/_footer.html +++ b/pinaxcon/templates/_footer.html @@ -14,7 +14,9 @@ Facebook | Twitter | Code of Conduct - | Colophon

+ | Colophon + | Donate +

This site is free and open source software, powered by Symposion and Registrasion.

diff --git a/pinaxcon/templates/static_pages/about/donate.html b/pinaxcon/templates/static_pages/about/donate.html new file mode 100644 index 0000000..2144ef6 --- /dev/null +++ b/pinaxcon/templates/static_pages/about/donate.html @@ -0,0 +1,52 @@ +{% 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 Software Freedom Conservancy, Inc. a 501(c)(3) organization incorporated in New York, and donations made to it are fully tax-deductible to the extent permitted by law. +{% endblock %} + + +{% block content %} + +

Donate by credit/debit card or ACH bank transfer (via PayPal)

+ +

+

+ + + + +
+

+ +

We accept Visa, MasterCard, American Express, Discover, and bank transfer.

+ + +

Donate by US bank check

+ +

We can accept checks drawn in USD from banks in the United States.

+ +

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

+ +

Mail your check to:

+ +
+ Software Freedom Conservancy, Inc.
+ 137 Montague ST STE 380
+ BROOKLYN, NY 11201
+ United States +
+ + +

Other donation methods

+

We can accept donations through other means, including wire transfer. To enquire, please e-mail spam@northbaypython.org.

+ + +{% endblock %} diff --git a/pinaxcon/urls.py b/pinaxcon/urls.py index 51b4bd9..2b8a33c 100644 --- a/pinaxcon/urls.py +++ b/pinaxcon/urls.py @@ -21,6 +21,7 @@ urlpatterns = [ # TODO add /about/petaluma url(r"^about/team$", TemplateView.as_view(template_name="static_pages/about/team.html"), name="about/team"), 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"), # program # TODO add /program/sessions