From 191418a74533b8d3b602629f4657c1b4eed65357 2017-08-23 19:49:45 From: Josh Simmons Date: 2017-08-23 19:49:45 Subject: [PATCH] Merge pull request #77 from northbaypython/chrisjrn/donate Adds donation page and link --- diff --git a/pinaxcon/templates/_footer.html b/pinaxcon/templates/_footer.html index 093cfdfd0bab4e207d2812278334ecb21ee278a3..8dffd631a6a8302b539a7d7ebd96f12fd38a8c19 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 0000000000000000000000000000000000000000..2144ef666fe1dec43479f515c6c9fdfe8a5826a7 --- /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 51b4bd90128378d2f6266ababb341db4bf39b8ed..2b8a33c467ee939cbe29afcf3d6a428a41b10794 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