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