view templates/donate/index.html @ 479:4b88b3c4fc80

downloads: initialize downloader from sources.js earlier c65b81353b8f inadvertently broke the /downloads page by moving the call to Downloader.init(sources) later in the rendering process, after the downloads list has already been written. As a stopgap, we introduce an earlier call to initialize the versions before attempting to render the list. Future changes will move this inline script into an onload function.
author Kevin Bullock <kbullock+mercurial@ringworld.org>
date Sun, 14 May 2017 21:47:27 -0500
parents ef6da0fd2a0c
children
line wrap: on
line source

{% extends "base.html" %}

{% block main %}

<!-- TODO(durin42): move this js someplace better -->
<script type="text/javascript">
function validateAmount(amount){
        if(amount.value.match( /^[0-9]+(\.([0-9]+))?$/)){
                return true;
        }else{
                alert('You must enter a valid donation.');
                amount.focus();
                return false;
        }
}
</script>

<h1>Project Donations</h1>

<p>Mercurial is a volunteer-run free-software project that is a
  member of
  the <a href='http://www.sfconservancy.org/'>Software
  Freedom Conservancy</a>, a US tax-exempt 501(c)(3) organization.
  Donations are tax-deductable.

<h2>General donations</h2>
<p>Donations to the general fund will be used to sponsor project
activities such as sprints and conference attendance:</p>

<table border=1>
<td><b>PayPal</b></td>
<td><b>Check</b></td>
<td><b>Wire Transfer</b></td></tr>
<tr>
<td>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="1578269">
<input type="image"
       src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif"
       border="0" name="submit" alt="">
<img alt="" border="0"
       src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1"
       height="1">
</form>
</td>
<td>
<b>Software Freedom Conservancy, Inc.</b><br>
137 Montague Street STE 380<br>
Brooklyn, NY  11201-3548<br>
<i>memo: Directed donation: Mercurial</i>
</p>
</td>
<td>
Please write
  to <a href='mailto:accounting@sfconservancy.org'>accounting@sfconservancy.org</a>
  for details.</p>
</td>
</tr>
</table>

{% endblock %}