Skip to content

Commit eb11378

Browse files
authored
Feat: add counts editors and maintainers filter (#271)
1 parent ed42001 commit eb11378

File tree

2 files changed

+12
-14
lines changed

2 files changed

+12
-14
lines changed

_pages/contributors.md

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -83,25 +83,19 @@ pyOpenSci is beginning to create its DEIA council. This council consists of lead
8383
{: .clearall }
8484

8585
{% assign ppl_sorted = site.data.contributors | reverse %}
86+
{% assign total_people = ppl_sorted | size %}
8687

87-
<!--
88-
<div class="entries-grid">
89-
{% for aperson in ppl_sorted %}
90-
{% unless aperson.board %}
91-
{% unless aperson.advisory %}
92-
{% include people-grid.html %}
93-
{% endunless %}
94-
{% endunless %}
95-
{% endfor %}
96-
</div> -->
88+
pyOpenSci has a diverse and vibrant community of pythonistas! To date,
89+
**{{ total_people }}** wonderful people have contributed to pyOpenSci.
9790

9891
<p><input type="text" id="quicksearch" placeholder="Search" /></p>
9992

10093
<div id="filters" class="button-group">
10194
<button class="button is-checked" data-filter="*">Show All</button>
10295
<button class="button" data-filter=".leadership">Leadership/Advisory</button>
103-
<button class="button" data-filter=".editor">Editorial Team</button>
104-
<button class="button" data-filter=".peer-review">Peer Review</button>
96+
<button class="button" data-filter=".editor">Editors / Editorial Team</button>
97+
<button class="button" data-filter=".reviewer">Reviewers</button>
98+
<button class="button" data-filter=".maintainer">Maintainers</button>
10599
<button class="button" data-filter=".peer-review-guide">Peer Review Guide</button>
106100
<button class="button" data-filter=".package-guide">Packaging Guide</button>
107101
<button class="button" data-filter=".metrics-contrib">Metrics</button>

_pages/python-packages.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,14 @@ redirect_from:
1717

1818
{% include feature_row id="intro" type="center" %}
1919

20+
{% assign packages_sorted = site.data.packages | sort_natural: 'date_accepted' | reverse %}
21+
{% assign total_packages = packages_sorted | size %}
22+
2023
## Explore our accepted scientific Python open source packages
2124

25+
To date, {{ total_packages }} packages have been accepted into the pyOpenSci
26+
ecosystem. [Click here to check out packages that are currently under review.](https://github.com/pyOpenSci/software-submission/issues)
27+
2228
<p><input type="text" id="quicksearch" placeholder="Search" /></p>
2329

2430
<div id="filters" class="button-group">
@@ -36,8 +42,6 @@ redirect_from:
3642
<button class="button" data-filter=".metal:not(.transition)">metal but not transition</button> -->
3743
</div>
3844

39-
{% assign packages_sorted = site.data.packages | sort_natural: 'date_accepted' | reverse %}
40-
4145
<div class="grid-isotope">
4246
{% for apackage in packages_sorted %}
4347
{% include package-grid.html %}

0 commit comments

Comments
 (0)