Django

Code

root/djangoproject.com/django_website/templates/base_foundation.html

Revision 9074, 1.8 kB (checked in by jacob, 2 months ago)

[djangoproject.com] a few template tweaks.

Line 
1 {% extends "base_community.html" %}
2
3 {% block content-related %}
4 <h2>Support Django</h2>
5 <p>
6   <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
7     <input type="hidden" name="cmd" value="_donations">
8     <input type="hidden" name="business" value="paypal@djangoproject.com">
9     <input type="hidden" name="item_name" value="Django Software Foundation">
10     <input type="hidden" name="item_number" value="donation">
11     <input type="hidden" name="no_shipping" value="1">
12     <input type="hidden" name="return" value="http://www.djangoproject.com/foundation/donate/thanks/">
13     <input type="hidden" name="cancel_return" value="http://www.djangoproject.com/foundation/donate/">
14     <input type="hidden" name="no_note" value="1">
15     <input type="hidden" name="currency_code" value="USD">
16     <input type="hidden" name="tax" value="0">
17     <input type="hidden" name="lc" value="US">
18     <input type="hidden" name="bn" value="PP-DonationsBF">
19     <label for="amount" style="font-size: 14px;">$</label> <input type="text" name="amount" value="25.00" size="5" style="font-size: 14px; margin-right: 4px;">
20     <input type="image" align="top" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
21     <img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
22   </form>
23 </p>
24
25 <p>Read more about <a href="/foundation/donate/">donating to the DSF</a>.
26  
27 <h2>Licensing &amp; Trademarks</h2> 
28 <ul>
29   <li><a href="/foundation/cla/">Contributor license agreements</a></li>
30 </ul>
31
32 <h2>About the foundation</h2>
33 <ul>
34   <li><a href="/foundation/faq/">FAQ</a></li>
35   <li><a href="/foundation/records">Records</a></li>
36   <li><a href="/contact/foundation/">Contact us</a></li>
37 </ul>
38 {% endblock %}
Note: See TracBrowser for help on using the browser.