Skip to content

Commit 066c918

Browse files
committed
Separate community builders from project teams
1 parent 111e5fc commit 066c918

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

templates/community_team_list.html

+17
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,21 @@ <h3>{{ project.name }}</h3>
2424
</tbody>
2525
</table>
2626
{% 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>
41+
{% endfor %}
42+
</tbody>
43+
</table>
2744
{% endblock %}

0 commit comments

Comments
 (0)