1
0
Fork 0
forked from 2sys/shoutdotdev
shoutdotdev/templates/teams.html

38 lines
965 B
HTML
Raw Permalink Normal View History

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>
<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.
</div>
2025-02-26 13:10:50 -08:00
{% endif %}
<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 %}