Changeset - c652b58658b3
[Not reviewed]
Merge
0 3 4
eximious - 5 years ago 2019-02-21 21:06:30
deb@seagl.org
Merge branch 'master' of ssh://k.sfconservancy.org/website
6 files changed with 14 insertions and 5 deletions:
0 comments (0 inline, 0 general)
www/conservancy/static/about/filings/index.html
Show inline comments
...
 
@@ -3,30 +3,38 @@
 
{% block submenuselection %}Filings{% endblock %}
 
{% block content %}
 

	
 
<h1>Public Filings</h1>
 

	
 
<p>Like all USA 501(c)(3) non-profits, the Conservancy files an annual Form 990 and,
 
as a non-profit in the State of New York, files an annual CHAR-500 with
 
New York State.  Below, Conservancy makes available these filings for
 
public inspection, in reverse chronological order:</p>
 

	
 
<ul>
 

	
 
<li>Fiscal Year 2017 (from 2017-03-01 through 2018-02-28)
 
  <p>Our FY 2017 ended on 2017-02-28.  We were granted (as most organizations
 
  are) the extended deadline.  Our annual filings are due with the USA
 
<li>Fiscal Year 2018 (from 2018-03-01 through 2019-02-28)
 
  <p>Our FY 2018 ends on 2019-02-28. Our annual filings are due with the USA
 
  Internal Revenue Service (IRS) and New York
 
  State <a href="https://www.irs.gov/charities-non-profits/return-due-dates-for-exempt-organizations-annual-return">on
 
  2019-01-15</a>.  They will be posted here shortly after filing.</p>
 
  2019-07-15</a>.  They will be posted here shortly after filing.</p>
 
</li>
 

	
 
<li>Fiscal Year 2017 (from 2017-03-01 through 2018-02-28)
 
<ul>
 
<li><a href="/docs/conservancy_Form-990_fy-2017.pdf">FY 2017 Federal Form 990 (PDF)</a></li>
 
<li><a href="/docs/conservancy_independent-audit_fy-2017.pdf">FY 2017 Independent Auditor's Report (PDF)</a></li>
 
<li><a href="/docs/conservancy_CHAR-500_fy-2017.pdf">FY 2017 New York State CHAR-500 (PDF)</a></li>
 
</ul>
 
</li>
 
</li>
 

	
 
<li>Fiscal Year 2016 (from 2016-03-01 through 2017-02-28)
 
<ul>
 
<li><a href="/docs/conservancy_Form-990_fy-2016.pdf">FY 2016 Federal Form 990 (PDF)</a></li>
 
<li><a href="/docs/conservancy_CHAR-500_fy-2016.pdf">FY 2016 New York State CHAR-500 (PDF)</a></li>
 
<li><a href="/docs/conservancy_independent-audit_fy-2016.pdf">FY 2016 Independent Auditor's Report (PDF)</a></li>
 
</ul>
 
</li>
 
</li>
 

	
 
<li>Fiscal Year 2015 (from 2015-03-01 through 2016-02-29)
www/conservancy/static/docs/conservancy_CHAR-500_fy-2017.pdf
Show inline comments
 
new file 100644
 
binary diff not shown
www/conservancy/static/docs/conservancy_Form-990_fy-2017.pdf
Show inline comments
 
new file 100644
 
binary diff not shown
www/conservancy/static/docs/conservancy_independent-audit_fy-2017.pdf
Show inline comments
 
new file 100644
 
binary diff not shown
www/conservancy/templates/base_conservancy.html
Show inline comments
...
 
@@ -53,24 +53,25 @@ fundraiser_goal_amount: The amount being matched
 
fundraiser_so_far_amount: The amount contributed so far
 
fundraiser_donation_count: The number of people who have contributed so far
 
fundraiser_donation_count_disclose_threshold: Not used
 

	
 
Local convenience variables:
 

	
 
this_match_goal: The amount being matched
 
this_match_so_far: The amount contributed so far
 
this_match_remaining: this_match_goal - this_match_so_far
 

	
 
{% endcomment %}
 

	
 
{% comment %}
 
{% if sitefundgoal %}
 
{% with this_match_goal=sitefundgoal.fundraiser_goal_amount this_match_so_far=sitefundgoal.fundraiser_so_far_amount %}
 
{% with this_match_remaining=this_match_goal|subtract:this_match_so_far %}
 
    <div class="fundraiser-top-text">
 
      <p>
 
        {% if this_match_remaining <= 0 %}
 
        Thanks to {{ sitegoal.fundraiser_donation_count|intcomma }} Supporters we earned our full match!  Help us go further to stand up for software
 
        freedom &mdash; <a href="/supporter">sign up now</a>!
 
        {% else %}
 
          {% if sitefundgoal_timeleft.total_seconds <= 0 %}
 
            The
 
          {% elif sitefundgoal_timeleft.days == 0 %}
...
 
@@ -95,24 +96,25 @@ this_match_remaining: this_match_goal - this_match_so_far
 
  {% endif %}
 
  of
 
  $<span id="site-fundraiser-final-goal">{{ this_match_goal|intcomma }}</span>
 
  so far!
 
</a>
 
</div>
 
{% endif %}
 

	
 
</div>
 
{% endwith %}
 
{% endwith %}
 
{% endif %}
 
{% endcomment %}
 

	
 
      {% block outercontent %}<div id="mainContent"> {% block content %}{% endblock %}</div>{% endblock %}
 
    <div id="conservancyfooter">
 
      <p>Connect with Conservancy on
 
        <a href="https://mastodon.technology/@conservancy">Mastodon</a>,
 
        <a href="https://twitter.com/conservancy">Twitter</a>,
 
        <a href="https://identi.ca/conservancy">pump.io</a>,
 
        <a href="https://plus.google.com/104268783278405704634/">Google+</a>,
 
        <a href="https://www.facebook.com/SoftwareFreedomConservancy/">Facebook</a>,
 
        and <a href="https://www.youtube.com/channel/UCUEeuNvX2UyTTyTYXR9dm_A">YouTube</a>.</p>
 

	
 
      <p><a href="/">Main Page</a> | <a href="/about/contact/">Contact</a> | <a href="/sponsors/">Sponsors</a> | <a href="/privacy-policy/">Privacy Policy</a> | <a href="/feeds/omnibus/">RSS Feed</a></p>
www/conservancy/templates/sponsors.html
Show inline comments
...
 
@@ -22,25 +22,24 @@ contributions.  Conservancy graciously thanks these sponsors for their
 
support, but doesn't necessarily endorse nor promote any specific activity of
 
any of its sponsors.</p>
 

	
 
<!-- logos should be 250x250 maximum. -->
 
<ul id="sponsor">
 
<li><a rel="nofollow" href="https://google.com"><img src="/img/sponsors/google.png" height="76" width="238" alt="Google" /></a></li>
 
<li><a rel="nofollow" href="https://joshtriplett.org"><img src="/img/sponsors/2018_Josh-Triplett.jpg" height="250" width="250" alt="Josh Triplett" /></a></li>
 
<li><a rel="nofollow" href="https://www.linux.org.au/"><img src="/img/sponsors/linux-australia.png" alt="Linux Australia"></a></li>
 
<li><a rel="nofollow" href="https://www.mozilla.org/foundation/"><img src="/img/sponsors/mozilla.png" height="101" width="250" alt="Mozilla Foundation" /></a></li>
 
<li><a rel="nofollow" href="https://www.privateinternetaccess.com/"><img src="/img/sponsors/privateinternetaccess.jpg" height="52" width="220" alt="Private Internet Access" /></a></li>
 
<li><a rel="nofollow" href="https://www.redhat.com/"><img src="/img/sponsors/redhat.png" height="80" width="250" alt="Red Hat" /></a></li>
 
<li><a rel="nofollow" href="https://www.savoirfairelinux.com/"><img src="/img/sponsors/savoir-faire-linux.png" alt="Savior-faire Linux"></a></li>
 
<li><a rel="nofollow" href="https://www.target.com/"><img src="/img/sponsors/target.jpg" height="250" width="250" alt="Target" /></a></li>
 
</ul>
 

	
 
<!-- This section will be added when we have in-kind contributions -->
 

	
 
<!-- <h3>In-Kind Donation of Services</h3> -->
 

	
 
<!-- <p>Conservancy would also like to thank the following companies who have -->
 
<!--   donated services and/or resources in-kind to support Conservancy's -->
 
<!--   work.</p> -->
 

	
 
<!-- <ul> -->
 
<!-- </ul> -->
0 comments (0 inline, 0 general)