Intitial teams support #147

Merged
Oleg-Komarov merged 34 commits from teams-support into main 2024-05-23 19:43:54 +02:00
Showing only changes of commit 15452acfc3 - Show all commits

View File

@ -4,6 +4,7 @@
<h1 class="mb-3">Teams</h1>
<div class="row">
<div class="col">
{% if user.team_users.all %}
<table class="table table-hover">
<thead>
<tr>
@ -56,6 +57,11 @@
{% endfor %}
</tbody>
</table>
{% else %}
<p>
You are not assigned to any teams yet.
</p>
{% endif %}
</div>
</div>
{% endblock settings %}