Skip to content

Commit 5dfeba6

Browse files
author
Ari
committed
Add Community Teams List page and databag
1 parent 8e06451 commit 5dfeba6

File tree

4 files changed

+35
-0
lines changed

4 files changed

+35
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
_model: page
2+
---
3+
_template: communityteams_list.html
4+
---
5+
title: Community Teams Members

databags/communityteams_members.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"team_members": [{"name": "Hemanth Kumar", "projects": ["Project Contributor for the License Chooser project, has privileges for the chooser repository"]}, {"name": "Jacqueline Binya", "projects": ["Project Contributor for the License Chooser project, has privileges for the chooser repository"]}, {"name": "Ari Madian", "projects": ["Project Core Committer for the License Chooser project, has privileges for the chooser repository", "Project Collaborator for the CC Search project, has privileges for the cccatalog-frontend repository"]}, {"name": "Mayank Nader", "projects": ["Project Core Committer for the CC Search Browser Extension project, has privileges for the ccsearch-browser-extension repository"]}, {"name": "Mar\u00eda Bel\u00e9n Guaranda Cabezas ", "projects": ["Project Core Committer for the Linked Commons project, has privileges for the cccatalog-dataviz repository"]}, {"name": "Olga Bulat", "projects": ["Project Core Committer for the License Chooser project, has privileges for the chooser repository"]}, {"name": "Ana Paula Rocha", "projects": ["Project Collaborator for the Platform Toolkit project, has privileges for the mp repository"]}, {"name": "Bhumij Gupta", "projects": ["Project Core Committer for the Link Checker project, has privileges for the cc-link-checker repository"]}, {"name": "Ahmad Bilal", "projects": ["Project Core Committer for the WordPress Plugin project, has privileges for the wp-plugin-creativecommons repository"]}, {"name": "Dhruv Bhanushali", "projects": ["Project Core Committer for the Vocabulary project, has privileges for the fonts, vocabulary, vue-vocabulary repositories"]}, {"name": "Chidiebere Onyegbuchulem", "projects": ["Project Member for the Vocabulary project, has privileges for the fonts, vocabulary, vue-vocabulary repositories"]}]}

templates/communityteams_list.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{% extends "layout.html" %}
2+
{% block title %}{{ this.title }}{% endblock %}
3+
{% block body %}
4+
<p>This is a list of all CC Community Teams members, and their roles and privileges.</p>
5+
<p>For more information about CC Community Teams, please see <a href="/content/community/community-teams/">the Community Teams Page</a>.</p>
6+
<h2>Community Teams Members</h2>
7+
<p>We are actively looking for help with these projects and each project has open GitHub issues that are ready for external contribution.</p>
8+
<table class="table table-striped">
9+
<thead class="thead-dark">
10+
<tr>
11+
<th scope="col">Team Member Name</th>
12+
<th scope="col">Roles</th>
13+
</tr>
14+
</thead>
15+
<tbody>
16+
{% for member in bag('communityteams_members.team_members') %}
17+
<tr>
18+
<td scope="row">{{ member.name }}</td>
19+
<td scope="row">
20+
{% for role in member.projects %}
21+
<p>{{ role }}</p>
22+
{% endfor %}
23+
</td>
24+
</tr>
25+
{% endfor %}
26+
</tbody>
27+
</table>
28+
{% endblock %}

templates/layout.html

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
{% for href, title in [
7979
['/community', 'Join the Community'],
8080
['/community/community-teams', 'Community Teams'],
81+
['/community/community-teams/members', 'Community Teams Members'],
8182
['/community/write-a-blog-post', 'Write a Blog Post'],
8283
['/community/code-of-conduct', 'Code of Conduct'],
8384
['/community/code-of-conduct/enforcement', 'Code of Conduct Enforcement'],

0 commit comments

Comments
 (0)