shoutdotdev/templates/teams.html

42 lines
1.1 KiB
HTML
Raw Normal View History

2024-11-01 00:07:33 -07:00
{% extends "base.html" %}
{% block title %}callout.dev: Teams{% endblock %}
{% block main %}
<nav class="container mt-4" aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item active" aria-current="page">Teams</li>
</ol>
</nav>
2025-01-31 14:30:08 -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>
<a href="{{ base_path }}/new-team" role="button" class="btn btn-primary">New Team</a>
</div>
</div>
2024-11-01 00:07:33 -07:00
</section>
{% if teams.len() == 0 %}
2025-01-31 14:30:08 -08:00
<div class="alert alert-primary" role="alert">
Doesn't look like you've created or been invited to any teams yet.
</div>
2024-11-01 00:07:33 -07:00
{% endif %}
<section class="mb-3">
2025-01-31 14:30:08 -08:00
<table class="table">
<tbody>
{% for team in teams %}
<tr>
<td>
<a href="{{ base_path }}/teams/{{ team.id }}">
{{ team.name }}
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
2024-11-01 00:07:33 -07:00
</section>
</main>
{% endblock %}