|
1 | 1 | {% extends "layout.html" %}
|
2 |
| -{% block title %}{{ this.title }}{% endblock %} |
| 2 | + |
3 | 3 | {% block body %}
|
4 |
| - <p>This is a list of all CC Community Team members, and their roles and privileges.</p> |
5 |
| - <p>For more information about CC Community Team, please see <a href="/community/community-team/">the Community Team Page</a>.</p> |
6 |
| - <h2>Project Teams</h2> |
7 |
| - {% for project in bag('community_team_members.projects') %} |
8 |
| - <h3>{{ project.name }}</h3> |
9 |
| - <p>These team members have permissions in the <code>{{ project.repos }}</code> repo(s).</p> |
10 |
| - <table class="table table-striped" style="width: 75%;"> |
11 |
| - <thead class="thead-dark"> |
12 |
| - <tr> |
13 |
| - <th scope="col">Role</th> |
14 |
| - <th scope="col">Member Name</th> |
15 |
| - </tr> |
16 |
| - </thead> |
17 |
| - <tbody> |
18 |
| - {% for member in project.members %} |
19 |
| - <tr> |
20 |
| - <td scope="row">{{ member.role }}</td> |
21 |
| - <td scope="row">{{ member.name }}</td> |
22 |
| - </tr> |
23 |
| - {% endfor %} |
24 |
| - </tbody> |
25 |
| - </table> |
26 |
| - {% endfor %} |
27 |
| - <h2>Community Building Teams</h2> |
28 |
| - <table class="table table-striped" style="width: 75%;"> |
29 |
| - <thead class="thead-dark"> |
30 |
| - <tr> |
31 |
| - <th scope="col">Role</th> |
32 |
| - <th scope="col">Member Name</th> |
33 |
| - </tr> |
34 |
| - </thead> |
35 |
| - <tbody> |
36 |
| - {% for member in bag('community_team_members.community_builders') %} |
37 |
| - <tr> |
38 |
| - <td scope="row">{{ member.role }}</td> |
39 |
| - <td scope="row">{{ member.name }}</td> |
40 |
| - </tr> |
| 4 | + <div class="community-team-members"> |
| 5 | + <div class="title"> |
| 6 | + <div class="container"> |
| 7 | + <h1>{{ this.title }}</h1> |
| 8 | + <p class="description column is-9">This is a list of all CC Community Team members, and their roles and privileges. For more information about CC Community Team, please see <a href="/community/community-team/">the Community Team Page</a>.</p> |
| 9 | + </div> |
| 10 | + </div> |
| 11 | + <div class="body container"> |
| 12 | + <h2 class="padding-top-bigger">Project Teams</h2> |
| 13 | + {% for project in bag('community_team_members.projects') %} |
| 14 | + <h3 class="b-header padding-vertical-normal">{{ project.name }}</h3> |
| 15 | + <p class="padding-bottom-normal">These team members have permissions in the <code>{{ project.repos }}</code> repo(s).</p> |
| 16 | + <div class="table-container"> |
| 17 | + <table class="table is-bordered is-striped"> |
| 18 | + <thead> |
| 19 | + <tr> |
| 20 | + <th>Role</th> |
| 21 | + <th>Member Name</th> |
| 22 | + </tr> |
| 23 | + </thead> |
| 24 | + {% for member in project.members %} |
| 25 | + <tr> |
| 26 | + <td>{{ member.role }}</td> |
| 27 | + <td>{{ member.name }}</td> |
| 28 | + </tr> |
| 29 | + {% endfor %} |
| 30 | + </table> |
| 31 | + </div> |
41 | 32 | {% endfor %}
|
42 |
| - </tbody> |
43 |
| - </table> |
| 33 | + <h2 class="padding-vertical-bigger">Community Building Teams</h2> |
| 34 | + <div class="table-container"> |
| 35 | + <table class="table is-bordered is-striped"> |
| 36 | + <thead> |
| 37 | + <tr> |
| 38 | + <th>Role</th> |
| 39 | + <th>Member Name</th> |
| 40 | + </tr> |
| 41 | + </thead> |
| 42 | + {% for member in bag('community_team_members.community_builders') %} |
| 43 | + <tr> |
| 44 | + <td>{{ member.role }}</td> |
| 45 | + <td>{{ member.name }}</td> |
| 46 | + </tr> |
| 47 | + {% endfor %} |
| 48 | + </table> |
| 49 | + </div> |
| 50 | + </div> |
| 51 | + </div> |
44 | 52 | {% endblock %}
|
0 commit comments