2025-02-26 13:10:50 -08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2025-02-26 13:10:46 -08:00
|
|
|
{% block title %}Shout.dev: Teams{% endblock %}
|
2025-02-26 13:10:50 -08:00
|
|
|
|
|
|
|
{% block main %}
|
2025-02-26 13:10:45 -08:00
|
|
|
{% include "breadcrumbs.html" %}
|
2025-02-26 13:10:47 -08:00
|
|
|
<main class="container mt-5">
|
|
|
|
<section class="mb-4">
|
|
|
|
<div class="d-flex justify-content-between align-items-center">
|
|
|
|
<h1>Teams</h1>
|
|
|
|
<div>
|
2025-03-25 11:40:02 -07:00
|
|
|
<a href="{{ base_path }}/en/new-team" role="button" class="btn btn-primary">New Team</a>
|
2025-02-26 13:10:47 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
2025-02-26 13:10:50 -08:00
|
|
|
</section>
|
|
|
|
{% if teams.len() == 0 %}
|
2025-02-26 13:10:47 -08:00
|
|
|
<div class="alert alert-primary" role="alert">
|
|
|
|
Doesn't look like you've created or been invited to any teams yet.
|
2025-02-26 13:10:49 -08:00
|
|
|
</div>
|
2025-02-26 13:10:50 -08:00
|
|
|
{% endif %}
|
2025-02-26 13:10:49 -08:00
|
|
|
<section class="mb-3">
|
2025-02-26 13:10:47 -08:00
|
|
|
<table class="table">
|
|
|
|
<tbody>
|
|
|
|
{% for team in teams %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
2025-04-12 23:05:39 -07:00
|
|
|
<a href="{{ base_path }}/en/teams/{{ team.id.simple() }}">
|
2025-02-26 13:10:47 -08:00
|
|
|
{{ team.name }}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2025-02-26 13:10:50 -08:00
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
{% endblock %}
|