From 83493b5da6ce55d515d910cc2fee0ab69e720f16 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Tue, 7 Jan 2025 09:28:07 +0000 Subject: [PATCH] Add a page listing recognised NPOs. --- pgweb/util/contexts.py | 1 + templates/pages/about/donate.html | 14 +++++++ templates/pages/about/policies/npos.html | 4 +- .../pages/community/recognised-npos.html | 42 +++++++++++++++++++ 4 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 templates/pages/community/recognised-npos.html diff --git a/pgweb/util/contexts.py b/pgweb/util/contexts.py index 35dc384a..b66d41cb 100644 --- a/pgweb/util/contexts.py +++ b/pgweb/util/contexts.py @@ -49,6 +49,7 @@ sitenav = { {'title': 'IRC', 'link': '/community/irc/'}, # {'title': 'Slack', 'link': 'https://join.slack.com/t/postgresteam/shared_invite/zt-1qj14i9sj-E9WqIFlvcOiHsEk2yFEMjA'}, {'title': 'Local User Groups', 'link': '/community/user-groups/'}, + {'title': 'Recognised NPOs', 'link': '/community/recognised-npos/'}, {'title': 'Events', 'link': '/about/events/'}, {'title': 'International Sites', 'link': '/community/international/'}, ], diff --git a/templates/pages/about/donate.html b/templates/pages/about/donate.html index 9a4214b6..e71061ee 100644 --- a/templates/pages/about/donate.html +++ b/templates/pages/about/donate.html @@ -4,6 +4,20 @@

Donate

+

+ This pages lists Recognised NPOs + and additional non-profit organisations that are critical to the PostgreSQL + project. Donations to these organizations are helpful in + supporting our work. +

+

+ There are different ways to support Recognised NPOs, including becoming + a Financial Sponsor. You can find out + more information about financial sponsorship on the + financial sponsorship page, or through a + Recognised NPOs website. +

+

PostgreSQL Project assets

The PostgreSQL Community Association diff --git a/templates/pages/about/policies/npos.html b/templates/pages/about/policies/npos.html index 5b1ff07a..cc8ac371 100644 --- a/templates/pages/about/policies/npos.html +++ b/templates/pages/about/policies/npos.html @@ -5,9 +5,9 @@

Recognised PostgreSQL Nonprofit Organisations

-

Last updated: July 29, 2017. {%git_changes_link%} View history before December 8, 2020.

+

Last updated: January 7, 2025. {%git_changes_link%} View history before December 8, 2020.

-

Recognised PostgreSQL Nonprofit Organisations (NPOs) will be listed on the PostgreSQL Website as such. To become recognised as an NPO, the organisation must self-certify that they meet the criteria below, aimed at ensuring they meet the standards of openness expected in the PostgreSQL Community. +

Recognised PostgreSQL Nonprofit Organisations (NPOs) will be listed on the PostgreSQL Website as such. To become recognised as an NPO, the organisation must self-certify that they meet the criteria below, aimed at ensuring they meet the standards of openness expected in the PostgreSQL Community.

Use of the terms "MUST", "MUST NOT", "SHOULD" and "SHOULD NOT" in the criteria below should be interpreted per RFC2119. diff --git a/templates/pages/community/recognised-npos.html b/templates/pages/community/recognised-npos.html new file mode 100644 index 00000000..d092d09a --- /dev/null +++ b/templates/pages/community/recognised-npos.html @@ -0,0 +1,42 @@ +{%extends "base/page.html"%} +{%block title%}Recognised NPOs{%endblock%} +{%block contents%} + +

Recognised NPOs

+ +

Recognised NPOs (Non Profit Organisations) are legal entities that support + the PostgreSQL project as their primary objective, and are managed in + accordance with the Recognised PostgreSQL + Nonprofit Organisations policy.

+ +

PostgreSQL Europe

+ +

PostgreSQL Europe is the "umbrella group" for PostgreSQL User Groups in + Europe and for users in regions that don't have a local user group. It's + goal is to promote the use of PostgreSQL in Europe, primarily by assisting + local user groups to promote the product locally through conferences and + other advocacy, as well as running European-wide conferences and other + activities.

+

More information can be found on the + PostgreSQL Europe website.

+ +

PostgreSQLFr

+ +

PostgreSQLFr has as its objectives the promotion, the support for + deployment and the development of the Open Source software PostgreSQL + and its derivatives and related projects in France and in French + speaking countries.

+

PostgreSQLFr organises the "PG Day France" each year in a different + city, since 2008.

+

More information can be found on the + PostgreSQLFr website.

+ +

United States PostgreSQL Association

+ +

The United States PostgreSQL Association, affectionately known as PgUS, + is a IRS 501(c)(3) public charity. It's purpose is to support the growth + and education of PostgreSQL, The World's Most Advanced Open Source + Database.

+

More information can be found on the + PgUS website.

+{%endblock%} -- 2.39.5