Adds donation page and link
This commit is contained in:
parent
9d5e595778
commit
557152cd77
3 changed files with 56 additions and 1 deletions
|
@ -14,7 +14,9 @@
|
|||
<a href="https://facebook.com/northbaypython">Facebook</a>
|
||||
| <a href="https://twitter.com/northbaypython">Twitter</a>
|
||||
| <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>
|
||||
|
||||
<p>This site is <a href="https://github.com/northbaypython/website">free and open source software</a>, powered by <a href="https://github.com/chrisjrn/symposion/">Symposion</a> and <a href="https://github.com/chrisjrn/registrasion/">Registrasion</a>.</p>
|
||||
</div>
|
||||
|
|
52
pinaxcon/templates/static_pages/about/donate.html
Normal file
52
pinaxcon/templates/static_pages/about/donate.html
Normal file
|
@ -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 <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 %}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue