Skip to content

Commit 7104276

Browse files
Fixes #1824 (#1828)
* Fixes #1824 * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 456dfc8 commit 7104276

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/teams/templates/team_members.html

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,15 @@ <h4>Members</h4>
1919
<thead>
2020
<tr>
2121
<th>
22-
Name
22+
Public name
2323
</th>
2424
<th>
2525
Status
2626
</th>
2727
{% if request.user in team.leads.all %}
28+
<th>
29+
Name
30+
</th>
2831
<th>
2932
Email
3033
</th>
@@ -49,6 +52,9 @@ <h4>Members</h4>
4952
{% if not member.approved %}(pending approval){% endif %}
5053
</td>
5154
{% if request.user in team.leads.all %}
55+
<td>
56+
{{ member.user.profile.name }}
57+
</td>
5258
<td>
5359
{{ member.user.email }}
5460
</td>

0 commit comments

Comments
 (0)