We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 111e5fc commit 066c918Copy full SHA for 066c918
templates/community_team_list.html
@@ -24,4 +24,21 @@ <h3>{{ project.name }}</h3>
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
38
+ <td scope="row">{{ member.role }}</td>
39
+ <td scope="row">{{ member.name }}</td>
40
41
+ {% endfor %}
42
+ </tbody>
43
+ </table>
44
{% endblock %}
0 commit comments