shoutdotdev/templates/teams.html

43 lines
1 KiB
HTML
Raw Normal View History

2025-02-26 13:10:50 -08:00
{% extends "base.html" %}
{% block title %}callout.dev: Teams{% endblock %}
{% block main %}
<main>
<section class="block">
<div class="container">
<h1 class="title">Callout.dev: Teams</h1>
</div>
</section>
{% if teams.len() == 0 %}
<section class="block">
<div class="container">
<article class="message is-info">
<div class="message-body">
Doesn't look like you've created or been invited to any teams yet.
<a href="{{ base_path }}/new-team">Click here</a> to create one.
</div>
</article>
</div>
</section>
{% endif %}
<section class="block">
<div class="container">
<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>
</div>
</section>
</main>
{% endblock %}