Show email for users when user is team responsible.
This commit is contained in:
parent
2ad0568f64
commit
fe974e469b
|
@ -22,6 +22,9 @@
|
|||
Status
|
||||
</th>
|
||||
{% if request.user in team.responsible_members.all %}
|
||||
<th>
|
||||
Email
|
||||
</th>
|
||||
<th>
|
||||
Action
|
||||
</th>
|
||||
|
@ -40,6 +43,9 @@
|
|||
{% if not member.approved %}(pending approval){% endif %}
|
||||
</td>
|
||||
{% if request.user in team.responsible_members.all %}
|
||||
<td>
|
||||
{{ member.user.email }}
|
||||
</td>
|
||||
<td>
|
||||
<div class="btn-group-vertical">
|
||||
<a class="btn btn-danger"
|
||||
|
|
Loading…
Reference in a new issue