Skip to content

Commit

Permalink
chore: indicate if team members are skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
netomi committed Jan 9, 2025
1 parent a733ae9 commit 207883f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions otterdog/webapp/templates/home/organization.html
Original file line number Diff line number Diff line change
Expand Up @@ -430,11 +430,15 @@ <h3 class="card-title">Status</h3>
<td class="col-1">{{ team.privacy }}</td>
<td class="col-1">{{ team.notifications }}</td>
<td class="col-2">
{% if team.skip_members == true %}
skipped
{% else %}
<ul>
{% for member in team.members %}
<li>{{ member }}</li>
{% endfor %}
</ul>
{% endif %}
</td>
</tr>
{% endfor %}
Expand Down

0 comments on commit 207883f

Please sign in to comment.